Skip to content

Commit 1d00bd0

Browse files
committed
make repr use class name
1 parent 8f7b25f commit 1d00bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/sentry/grouping/component.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,4 @@ def as_dict(self) -> dict[str, Any]:
180180
return rv
181181

182182
def __repr__(self) -> str:
183-
return f"GroupingComponent({self.id!r}, hint={self.hint!r}, contributes={self.contributes!r}, values={self.values!r})"
183+
return f"{self.__class__.__name__}({self.id!r}, hint={self.hint!r}, contributes={self.contributes!r}, values={self.values!r})"

0 commit comments

Comments
 (0)