We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c43b3 commit 7873548Copy full SHA for 7873548
pyperformance/cli.py
@@ -387,7 +387,8 @@ def _main():
387
elif action == "show":
388
cmd_venv_show(options, root)
389
else:
390
- print(f"ERROR: unsupported venv command action {action!r}")
+ if action is not None:
391
+ print(f"ERROR: unsupported venv command action {action!r}")
392
parser.print_help()
393
sys.exit(1)
394
elif options.action == "compile":
0 commit comments