Skip to content

Commit ce10ace

Browse files
committed
Fix CLI from returning non-zero value
1 parent 71aafad commit ce10ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SigProfilerAssignment/SigProfilerAssignment_CLI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def main_function():
1313

1414
if len(sys.argv) < 2 or sys.argv[1].lower() not in commands:
1515
print_usage(commands)
16-
sys.exit(1)
16+
return
1717

1818
command = sys.argv[1].lower()
1919
args = sys.argv[2:]

0 commit comments

Comments
 (0)