Skip to content

Commit 57ee2b6

Browse files
committed
misc: Update frozendict repr
1 parent cd37bb3 commit 57ee2b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devito/tools/data_structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ def __len__(self):
661661
return len(self._dict)
662662

663663
def __repr__(self):
664-
return f'<{self.__class__.__name__} {self._dict!r}>'
664+
return f'{self.__class__.__name__}({self._dict!r})'
665665

666666
def __hash__(self):
667667
if self._hash is None:

0 commit comments

Comments
 (0)