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 9604b62 commit f715fe4Copy full SHA for f715fe4
domdf_wxpython_tools/panel_listctrl/font_parser.py
@@ -47,7 +47,7 @@ def freezeargs(func: Callable) -> Callable:
47
48
@wraps(func)
49
def wrapped(*args, **kwargs):
50
- args = tuple([frozendict(arg) if isinstance(arg, dict) else arg for arg in args])
+ args = tuple(frozendict(arg) if isinstance(arg, dict) else arg for arg in args)
51
kwargs = {k: frozendict(v) if isinstance(v, dict) else v for k, v in kwargs.items()}
52
return func(*args, **kwargs)
53
0 commit comments