(self)
| 64 | self._uniques: Attribute[int] = NotSet |
| 65 | |
| 66 | def __repr__(self) -> str: |
| 67 | return self.get__repr__( |
| 68 | { |
| 69 | "referrer": self._referrer.value, |
| 70 | "count": self._count.value, |
| 71 | "uniques": self._uniques.value, |
| 72 | } |
| 73 | ) |
| 74 | |
| 75 | @property |
| 76 | def count(self) -> int: |
nothing calls this directly
no test coverage detected