Skip to content

Commit

Permalink
fix new flake8-comprehensions C420 check
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl authored and inducer committed Jul 1, 2024
1 parent dcd7d14 commit 22cdcc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arraycontext/pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def inner(metafunc):
return

arg_values, ids = cl_tools.get_pyopencl_fixture_arg_values()
empty_arg_dict = {k: None for k in arg_values[0]}
empty_arg_dict = dict.fromkeys(arg_values[0])

# }}}

Expand Down

0 comments on commit 22cdcc3

Please sign in to comment.