removing unnecessary parens

This commit is contained in:
Nate Prewitt
2017-02-06 13:49:38 -07:00
parent a2987a05fe
commit b1cdb6f02a
+1 -2
View File
@@ -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()))