Skip to content

Commit f715fe4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9604b62 commit f715fe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domdf_wxpython_tools/panel_listctrl/font_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def freezeargs(func: Callable) -> Callable:
4747

4848
@wraps(func)
4949
def wrapped(*args, **kwargs):
50-
args = tuple([frozendict(arg) if isinstance(arg, dict) else arg for arg in args])
50+
args = tuple(frozendict(arg) if isinstance(arg, dict) else arg for arg in args)
5151
kwargs = {k: frozendict(v) if isinstance(v, dict) else v for k, v in kwargs.items()}
5252
return func(*args, **kwargs)
5353

0 commit comments

Comments
 (0)