From b1cdb6f02a79add53dc0796bc53d058c653b68dc Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 6 Feb 2017 13:49:38 -0700 Subject: [PATCH] removing unnecessary parens --- pipenv/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 358c5182..9cef4f64 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -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()))