forked from forks/qmk_firmware
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
|