We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 045cf2b + 022aa8a commit f2dbcb7Copy full SHA for f2dbcb7
1 file changed
pep8.py
@@ -1574,11 +1574,12 @@ class StyleGuide(object):
1574
def __init__(self, *args, **kwargs):
1575
# build options from the command line
1576
self.checker_class = kwargs.pop('checker_class', Checker)
1577
+ arglist = kwargs.pop('arglist', None)
1578
parse_argv = kwargs.pop('parse_argv', False)
1579
config_file = kwargs.pop('config_file', None)
1580
parser = kwargs.pop('parser', None)
1581
options, self.paths = process_options(
- parse_argv=parse_argv, config_file=config_file, parser=parser)
1582
+ arglist, parse_argv, config_file, parser)
1583
if args or kwargs:
1584
# build options from dict
1585
options_dict = dict(*args, **kwargs)
0 commit comments