Skip to content
Snippets Groups Projects
Commit aa6dfe57 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

:star: :star: :star: Add a star to correctly get atoms of InterpolatorAccess :star: :star: :star:

parent f9e88655
No related merge requests found
...@@ -172,7 +172,7 @@ class InterpolatorAccess(TypedSymbol): ...@@ -172,7 +172,7 @@ class InterpolatorAccess(TypedSymbol):
offsets.update([self]) offsets.update([self])
for o in self.offsets: for o in self.offsets:
if hasattr(o, 'atoms'): if hasattr(o, 'atoms'):
offsets.update(set(o.atoms(types))) offsets.update(set(o.atoms(*types)))
return offsets return offsets
else: else:
return set() return set()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment