Skip to content

Commit 32d0c22

Browse files
authored
enabled and fixed consider-using-sys-exit pylint warnings (#6934)
1 parent f9e69c4 commit 32d0c22

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.pylintrc

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ disable=
5252
consider-using-in,
5353
too-many-nested-blocks,
5454
too-many-public-methods,
55-
consider-using-sys-exit,
5655
chained-comparison,
5756
too-many-instance-attributes,
5857
too-many-boolean-expressions,

addons/naming.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def validate_regex(expr):
1717
re.compile(expr)
1818
except re.error:
1919
print('Error: "{}" is not a valid regular expression.'.format(expr))
20-
exit(1)
20+
sys.exit(1)
2121

2222

2323
RE_VARNAME = None

htmlreport/cppcheck-htmlreport

+1-1
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ def main() -> None:
653653
sys.argv[1]
654654
except IndexError: # no arguments give, print --help
655655
parser.print_help()
656-
quit()
656+
sys.exit(0)
657657

658658
if not options.report_dir:
659659
parser.error('No report directory set.')

0 commit comments

Comments
 (0)