Skip to content

Commit 612400a

Browse files
committed
arc.cli.args.parser: PEP8 E712 fix
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
1 parent 1a23c9d commit 612400a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arc/cli/args/parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def add_arguments_on_module(self, name):
210210
if module.ARGUMENTS:
211211
for arg in module.ARGUMENTS:
212212
# Add config instance to the options
213-
if arg[1].get('config', None) == True:
213+
if arg[1].get('config', None) is True:
214214
arg[1]['config'] = self.config
215215
# Support either both short+long options or either one, short OR long
216216
short_and_or_long_opts = arg[0]

0 commit comments

Comments
 (0)