We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2dadb9 commit db9e423Copy full SHA for db9e423
gendiff/cli.py
@@ -1,7 +1,7 @@
1
import argparse
2
3
4
-def parse_args(args=None): # args need only for test
+def parse_args():
5
parser = argparse.ArgumentParser(
6
prog='gendiff',
7
description='Compares two configuration files and shows a difference.',
@@ -12,4 +12,4 @@ def parse_args(args=None): # args need only for test
12
parser.add_argument('first_file')
13
parser.add_argument('second_file')
14
15
- return parser.parse_args(args)
+ return parser.parse_args()
0 commit comments