Skip to content

Commit

Permalink
Properly pass None to adapter when an input file is not provided
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed Jul 11, 2023
1 parent f23c23a commit d0a0b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grizzly/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def main(args):
session.run(
args.ignore,
time_limit,
input_path=str(args.input),
input_path=str(args.input) if args.input else None,
iteration_limit=args.limit,
no_harness=args.no_harness,
result_limit=1 if args.smoke_test else 0,
Expand Down

0 comments on commit d0a0b9f

Please sign in to comment.