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

Oops, forgot a return in TextureCachedField.reproducible_hash

parent ba96ba03
1 merge request!81Oops, forgot a return in TextureCachedField.reproducible_hash
...@@ -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% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment