Skip to content

Commit 24e0ffb

Browse files
committed
took out print(args)
1 parent 31a6999 commit 24e0ffb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ def parse_arguments():
3737

3838
# parse the args and return Namespace object
3939
args = parser.parse_args()
40-
print(vars(args))
40+
# print(vars(args))
4141

4242
# if args Namespace object is empty, print help and exit(1) (essentially calling pyatest -h)
43-
if len(vars(args)) is 0:
43+
if len(vars(args)) == 0:
4444
parser.print_help()
4545
exit(1)
4646

0 commit comments

Comments
 (0)