Skip to content

Commit d436d95

Browse files
committed
Default verbose to None instead of 0
1 parent 80fcdae commit d436d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@ def __init__(self, *args, **kwargs):
19951995
# build options from dict
19961996
options_dict = dict(*args, **kwargs)
19971997
arglist = None if parse_argv else options_dict.get('paths', None)
1998-
verbose = options_dict.get('verbose', 0)
1998+
verbose = options_dict.get('verbose', None)
19991999
options, self.paths = process_options(
20002000
arglist, parse_argv, config_file, parser, verbose)
20012001
if options_dict:

0 commit comments

Comments
 (0)