Skip to content
Snippets Groups Projects
Commit 898716d3 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[bugfix] Python2 does actual type checking on self arguments

parent 9940430d
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ class AccumulationOutput(SumfactKernelInterfaceBase, ImmutableRecord): ...@@ -168,7 +168,7 @@ class AccumulationOutput(SumfactKernelInterfaceBase, ImmutableRecord):
return () return ()
else: else:
from dune.codegen.sumfact.basis import SumfactBasisMixin from dune.codegen.sumfact.basis import SumfactBasisMixin
return SumfactBasisMixin.lfs_inames(None, get_leaf(self.trial_element, self.trial_element_index), self.restriction) return SumfactBasisMixin.lfs_inames(SumfactBasisMixin(), get_leaf(self.trial_element, self.trial_element_index), self.restriction)
def realize_input(self, inames, shape, vec_iname, vec_shape, buf, ftags): def realize_input(self, inames, shape, vec_iname, vec_shape, buf, ftags):
# The result of stage 2 has the correct quadrature permutation but no # The result of stage 2 has the correct quadrature permutation but no
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment