Skip to content
Snippets Groups Projects
Commit f056dbd2 authored by Martin Bauer's avatar Martin Bauer
Browse files

Merge branch 'reproducible-hash-for-textures' into 'master'

Oops, forgot a return in TextureCachedField.reproducible_hash

See merge request pycodegen/pystencils!81
parents 7563d84e 804e4d4b
Branches
No related tags found
No related merge requests found
...@@ -358,7 +358,7 @@ class TextureCachedField: ...@@ -358,7 +358,7 @@ class TextureCachedField:
@property @property
def reproducible_hash(self): def reproducible_hash(self):
_hash(str(self._hashable_contents).encode()).hexdigest() return _hash(str(self._hashable_contents).encode()).hexdigest()
class TextureAccess(InterpolatorAccess): class TextureAccess(InterpolatorAccess):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment