Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkomali committed Jan 14, 2025
1 parent 482a3b7 commit 6964ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genai-perf/genai_perf/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1119,8 +1119,8 @@ def refine_args(
parser: argparse.ArgumentParser, args: argparse.Namespace
) -> argparse.Namespace:
if args.subcommand == Subcommand.PROFILE.to_lowercase():
args = _check_payload_input_args(parser, args)
args = _infer_prompt_source(args)
args = _check_payload_input_args(parser, args)
args = _check_model_args(parser, args)
args = _check_conditional_args(parser, args)
args = _check_image_input_args(parser, args)
Expand Down

0 comments on commit 6964ee0

Please sign in to comment.