This commit is contained in:
ydshieh 2024-03-20 17:23:27 +01:00
parent 47b0550816
commit 2977be1bdc
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ if __name__ == "__main__":
"--config_path", default=None, type=str, required=False, help="Path to a prepared run file or a previously run output file."
)
parser.add_argument(
"--output_path", default=None, type=str, required=True, help="Path to the output file where the run's info. will be saved."
"--output_path", type=str, required=True, help="Path to the output file where the run's info. will be saved."
)
args = parser.parse_args()

View File

@ -45,7 +45,7 @@ if __name__ == "__main__":
"--config_path", default=None, type=str, required=False, help="Path to a prepared run file or a previously run output file."
)
parser.add_argument(
"--output_path", default=None, type=str, required=True, help="Path to the output file where the run's info. will be saved."
"--output_path", type=str, required=True, help="Path to the output file where the run's info. will be saved."
)
args = parser.parse_args()