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 merge requests found
......@@ -358,7 +358,7 @@ class TextureCachedField:
@property
def reproducible_hash(self):
_hash(str(self._hashable_contents).encode()).hexdigest()
return _hash(str(self._hashable_contents).encode()).hexdigest()
class TextureAccess(InterpolatorAccess):
......
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