Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
douglas-fva authored Oct 12, 2023
1 parent f537b4c commit eb746ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
parser = argparse.ArgumentParser()
parser.add_argument("--modelA","-a", type=str, required=True)
parser.add_argument("--modelB", "-b", type=str, required=True)
# args = parser.parse_args()
args = parser.parse_args()
# if args.help:
# print("This is the helptext: \nKnown Arguments: ") # TODO

Expand All @@ -29,8 +29,8 @@
# Define file paths #
#################################################
### Define path of the import files
input_file = "C:\\bearinx_28_schiffsgetriebe_rexsj_1_3.rexsj" #args.modelA
input_file_prime = "C:\\bearinx_28_schiffsgetriebe_rexsj_1_3_mod.rexsj" #args.modelB
input_file = args.modelA
input_file_prime = args.modelB

#################################################
# Import the data #
Expand Down

0 comments on commit eb746ad

Please sign in to comment.