Skip to content
Snippets Groups Projects
Commit 6e652f54 authored by Nils Kohl's avatar Nils Kohl :full_moon_with_face:
Browse files

Typing issue in generate_all_operators.py.

parent 327c0e78
No related branches found
No related tags found
1 merge request!2Vector operators
Pipeline #66263 failed
...@@ -605,7 +605,7 @@ def all_operators( ...@@ -605,7 +605,7 @@ def all_operators(
for c in [0, 1, 2]: for c in [0, 1, 2]:
# fmt: off # fmt: off
div_geometries = geometries div_geometries = list(geometries)
if c == 2: if c == 2:
div_geometries = three_d div_geometries = three_d
ops.append(OperatorInfo(mapping=f"P2ToP1", name=f"Div_{c}", trial_space=P1, test_space=P2, ops.append(OperatorInfo(mapping=f"P2ToP1", name=f"Div_{c}", trial_space=P1, test_space=P2,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment