Skip to content

Commit 428a14a

Browse files
fix: remove extraneous exit() calls (#2420)
Fixes #2414
1 parent c59155c commit 428a14a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

cve_bin_tool/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def main(argv=None):
8686
raise OSError(
8787
"Python no longer provides security updates for version 3.6 as of December 2021. Please upgrade to python 3.7+ to use CVE Binary Tool."
8888
)
89-
exit()
9089
argv = argv or sys.argv
9190

9291
# Reset logger level to info

cve_bin_tool/csv2cve.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def main(argv: Optional[List[str]] = None):
1818
raise OSError(
1919
"Python no longer provides security updates for version 3.6 as of December 2021. Please upgrade to python 3.7+ to use CVE Binary Tool."
2020
)
21-
exit()
2221
logger: logging.Logger = LOGGER.getChild("CSV2CVE")
2322
argv: List[str] = argv or sys.argv
2423
if len(argv) < 2:

0 commit comments

Comments
 (0)