Skip to content
Snippets Groups Projects

Oops, forgot a return in TextureCachedField.reproducible_hash

Merged Stephan Seitz requested to merge seitz/pystencils:reproducible-hash-for-textures into master
Compare and
1 file
+ 1
1
Preferences
Compare changes
@@ -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):