Skip to content

Commit 60fb0a4

Browse files
authored
Fix: --traj_path is required (SWE-agent#525)
Closes SWE-agent#523
1 parent 7e394cd commit 60fb0a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_replay.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def main(
117117

118118
def get_args(args=None):
119119
parser = ArgumentParser(description=__doc__)
120-
parser.add_argument("--traj_path", help="Path to trajectory to replay", default=None)
120+
parser.add_argument("--traj_path", help="Path to trajectory to replay", required=True)
121121
parser.add_argument("--config_file", help="Path to template", required=True)
122122
parser.add_argument(
123123
"--data_path",

0 commit comments

Comments
 (0)