diff options
author | Erovia <erovia@users.noreply.github.com> | 2020-03-23 21:59:44 +0100 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-04-08 09:31:14 -0700 |
commit | 38f14c4174afe7c576e8bd032f18b1dcceaf9c77 (patch) | |
tree | c72ba64ba7a7a746c5c13c77af837dbbe5d3b32a /lib/python/qmk/cli/docs.py | |
parent | eb683c8c52df7e3fb6d9829ec15c634e23e9f2ce (diff) | |
download | qmk_firmware-38f14c4174afe7c576e8bd032f18b1dcceaf9c77.tar.gz qmk_firmware-38f14c4174afe7c576e8bd032f18b1dcceaf9c77.zip |
Don't hide for devs...
Diffstat (limited to 'lib/python/qmk/cli/docs.py')
-rw-r--r-- | lib/python/qmk/cli/docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/docs.py b/lib/python/qmk/cli/docs.py index 1d655ecaa..581610650 100644 --- a/lib/python/qmk/cli/docs.py +++ b/lib/python/qmk/cli/docs.py | |||
@@ -7,7 +7,7 @@ from milc import cli | |||
7 | 7 | ||
8 | 8 | ||
9 | @cli.argument('-p', '--port', default=8936, type=int, help='Port number to use.') | 9 | @cli.argument('-p', '--port', default=8936, type=int, help='Port number to use.') |
10 | @cli.subcommand('Run a local webserver for QMK documentation.', hidden=True) | 10 | @cli.subcommand('Run a local webserver for QMK documentation.', hidden=False if cli.config.user.developer else True) |
11 | def docs(cli): | 11 | def docs(cli): |
12 | """Spin up a local HTTPServer instance for the QMK docs. | 12 | """Spin up a local HTTPServer instance for the QMK docs. |
13 | """ | 13 | """ |