Skip to content

Commit 1f83587

Browse files
authored
custom env vars parsing- comma separated (#1758)
1 parent ad1e694 commit 1f83587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/performance/argument_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def list_of_strings(arg):
3434

3535
def to_dict(arg):
3636
"""Split a comma-separated string into a dictionary of key-value pairs."""
37-
return dict(item.split("=") for item in arg.split(";"))
37+
return dict(item.split("=") for item in arg.split(","))
3838

3939

4040
def lower_str(arg):

0 commit comments

Comments
 (0)