(self, attributes: dict[str, Any])
| 85 | return self._uniques.value |
| 86 | |
| 87 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 88 | if "count" in attributes: # pragma no branch |
| 89 | self._count = self._makeIntAttribute(attributes["count"]) |
| 90 | if "referrer" in attributes: # pragma no branch |
| 91 | self._referrer = self._makeStringAttribute(attributes["referrer"]) |
| 92 | if "uniques" in attributes: # pragma no branch |
| 93 | self._uniques = self._makeIntAttribute(attributes["uniques"]) |
nothing calls this directly
no test coverage detected