Skip to content

Commit

Permalink
Fix None case
Browse files Browse the repository at this point in the history
  • Loading branch information
dyastremsky committed Mar 19, 2024
1 parent 99f0d18 commit 63de89d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_analyzer/config/input/config_command_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1424,7 +1424,7 @@ def _autofill_values(self):
elif not "request_rate" in model.parameters():
new_model["parameters"].update({"concurrency": self.concurrency})
else:
new_model["parameters"].update({"concurrency": None})
new_model["parameters"].update({"concurrency": []})

if "request_rate" in model.parameters():
new_model["parameters"].update(
Expand Down

0 comments on commit 63de89d

Please sign in to comment.