Skip to content

Commit

Permalink
[geom] Fix Heightmap.__repr__()
Browse files Browse the repository at this point in the history
  • Loading branch information
holl- committed Apr 3, 2024
1 parent 9ed7c18 commit 7566ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phi/geom/_heightmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def __hash__(self):
return hash(self._bounds)

def __repr__(self):
return f"Heightmap {self._resolution}, bounds={self._bounds}"
return f"Heightmap {self.resolution}, bounds={self._bounds}"

def __variable_attrs__(self):
return '_height', '_bounds', '_max_dist', '_fill_below', '_extrapolation', '_faces'
Expand Down

0 comments on commit 7566ef9

Please sign in to comment.