mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-15 14:13:27 +00:00
9 lines
188 B
Python
Executable File
9 lines
188 B
Python
Executable File
from milc import cli
|
|
from qmk.constants import QMK_USERSPACE
|
|
|
|
|
|
@cli.subcommand('Detected path to QMK Userspace.', hidden=True)
|
|
def userspace_path(cli):
|
|
print(QMK_USERSPACE)
|
|
return
|