Skip to content

Commit

Permalink
repr
Browse files Browse the repository at this point in the history
  • Loading branch information
ksagiyam committed Jan 7, 2025
1 parent e5c7ea3 commit f823e71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ufl/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ def ufl_cell(self):

def __repr__(self):
"""Representation."""
return "MixedMesh(%s, ufl_id=%s)" % (repr(self._meshes), repr(self._ufl_id))
# return "MixedMesh(%s, ufl_id=%s)" % (repr(self._meshes), repr(self._ufl_id))
return "MixedMesh(%s)" % (repr(self._meshes),)

def __str__(self):
"""Format as a string."""
Expand Down

0 comments on commit f823e71

Please sign in to comment.