(self, attributes: dict[str, Any])
| 91 | return self._uniques.value |
| 92 | |
| 93 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 94 | if "count" in attributes: # pragma no branch |
| 95 | self._count = self._makeIntAttribute(attributes["count"]) |
| 96 | if "path" in attributes: # pragma no branch |
| 97 | self._path = self._makeStringAttribute(attributes["path"]) |
| 98 | if "title" in attributes: # pragma no branch |
| 99 | self._title = self._makeStringAttribute(attributes["title"]) |
| 100 | if "uniques" in attributes: # pragma no branch |
| 101 | self._uniques = self._makeIntAttribute(attributes["uniques"]) |
nothing calls this directly
no test coverage detected