File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ disable=
52
52
consider-using-in,
53
53
too-many-nested-blocks,
54
54
too-many-public-methods,
55
- consider-using-sys-exit,
56
55
chained-comparison,
57
56
too-many-instance-attributes,
58
57
too-many-boolean-expressions,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def validate_regex(expr):
17
17
re .compile (expr )
18
18
except re .error :
19
19
print ('Error: "{}" is not a valid regular expression.' .format (expr ))
20
- exit (1 )
20
+ sys . exit (1 )
21
21
22
22
23
23
RE_VARNAME = None
Original file line number Diff line number Diff line change @@ -653,7 +653,7 @@ def main() -> None:
653
653
sys .argv [1 ]
654
654
except IndexError : # no arguments give, print --help
655
655
parser .print_help ()
656
- quit ( )
656
+ sys . exit ( 0 )
657
657
658
658
if not options .report_dir :
659
659
parser .error ('No report directory set.' )
You can’t perform that action at this time.
0 commit comments