Skip to content

Commit

Permalink
Update modal flag type
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosejimenez committed Jan 11, 2025
1 parent 25f5620 commit 67a0eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swebench/harness/run_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def main(
parser.add_argument("--run_id", type=str, required=True, help="Run ID - identifies the run")

# Modal execution args
parser.add_argument("--modal", action="store_true", default=False, help="Run on Modal")
parser.add_argument("--modal", type=str2bool, default=False, help="Run on Modal")

args = parser.parse_args()
main(**vars(args))

0 comments on commit 67a0eb3

Please sign in to comment.