Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
odd warning, go away
  • Loading branch information
maurycy committed Jan 26, 2026
commit 7873548c0612d5a67969cd90da3bf119e0e45477
3 changes: 2 additions & 1 deletion pyperformance/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ def _main():
elif action == "show":
cmd_venv_show(options, root)
else:
print(f"ERROR: unsupported venv command action {action!r}")
if action is not None:
print(f"ERROR: unsupported venv command action {action!r}")
parser.print_help()
sys.exit(1)
elif options.action == "compile":
Expand Down
Loading