mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-29 14:40:38 +00:00
9 lines
194 B
Python
Executable File
9 lines
194 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 or '')
|
|
return
|