mirror of
https://github.com/mfulz/qmk_firmware.git
synced 2025-06-19 05:05:18 +02: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
|