mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
removing unnecessary parens
This commit is contained in:
+1
-2
@@ -734,11 +734,10 @@ def cli(ctx, where=False, venv=False, rm=False, bare=False, three=False, python=
|
||||
sys.exit(1)
|
||||
|
||||
# --two / --three was passed...
|
||||
if (python) or (three is not None):
|
||||
if python or three is not None:
|
||||
ensure_project(three=three, python=python)
|
||||
|
||||
else:
|
||||
|
||||
# Display help to user, if no commands were passed.
|
||||
click.echo(format_help(ctx.get_help()))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user