Skip to content

Commit

Permalink
chore: drop random prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabaut committed Feb 1, 2025
1 parent 15d837d commit 9f72beb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions s4c/core/sheet_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ def main(argv):
print(f"FILE_VERSION v{FILE_VERSION}")
sys.exit(0)
elif len(argv)-1 == EXPECTED_ARGS+2:
if argv[1] != "--s4c-path":
print("HEREW")
if argv[1] != "--s4c_path":
log_wrong_argnum(EXPECTED_ARGS, argv)
usage()
s4c_path = argv[2]
Expand All @@ -189,7 +188,6 @@ def main(argv):
SheetArgs(ints[0],ints[1],ints[2],ints[3],ints[4]),s4c_path)
else:
log_wrong_argnum(EXPECTED_ARGS, argv)
print("HERE")
usage()
else:
mode = argv[1]
Expand Down

0 comments on commit 9f72beb

Please sign in to comment.