Skip to content

Commit 6c58c83

Browse files
committed
make repr use class name
1 parent e9f6359 commit 6c58c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/grouping/component.py

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

172172
def __repr__(self) -> str:
173-
return f"GroupingComponent({self.id!r}, hint={self.hint!r}, contributes={self.contributes!r}, values={self.values!r})"
173+
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)