dqm/main.py
2
E251:
unexpected spaces around keyword / parameter equals
Unexpected spaces around keyword / parameter equals (in 2 places):
121
parser
=
argparse
.
ArgumentParser
(
description
=
"Main script of DQM"
,
add_help
=
False
)
2
W291:
trailing whitespace
118
# TODO : insertion of new command line inside DQM, will be refactored in v 2.0, for instance
121
parser
=
argparse
.
ArgumentParser
(
description
=
"Main script of DQM"
,
add_help
=
False
)
2
W293:
blank line contains whitespace
120
135
1
E303:
too many blank lines (3)
157
args
=
parser
.
parse_args
()
1
E501:
line too long (127 > 120 characters)
125
parser
.
add_argument
(
"command"
,
choices
=
command_list
,
default
=
"legacy"
,
nargs
=
'?'
,
help
=
"Available command for your dqm-ml"
)