Skip to content
Snippets Groups Projects
Unverified Commit d436d955 authored by Marco Sirabella's avatar Marco Sirabella
Browse files

Default `verbose` to `None` instead of `0`

parent 80fcdae5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1995,7 +1995,7 @@ class StyleGuide(object):
# build options from dict
options_dict = dict(*args, **kwargs)
arglist = None if parse_argv else options_dict.get('paths', None)
verbose = options_dict.get('verbose', 0)
verbose = options_dict.get('verbose', None)
options, self.paths = process_options(
arglist, parse_argv, config_file, parser, verbose)
if options_dict:
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment