We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41bb886 commit 8ea1325Copy full SHA for 8ea1325
modules/infotext_utils.py
@@ -262,7 +262,7 @@ def split_infotext(x: str):
262
263
def parameters_to_dict(parameters: str):
264
"""convert parameters from string to dict"""
265
- return {k: v for k, v in re_param.findall(parameters)}
+ return dict(re_param.findall(parameters))
266
267
268
def parse_parameters(param_dict: dict):
0 commit comments