(self, attributes: dict[str, Any])
| 77 | return self._week.value |
| 78 | |
| 79 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 80 | if "days" in attributes: # pragma no branch |
| 81 | self._days = self._makeListOfIntsAttribute(attributes["days"]) |
| 82 | if "total" in attributes: # pragma no branch |
| 83 | self._total = self._makeIntAttribute(attributes["total"]) |
| 84 | if "week" in attributes: # pragma no branch |
| 85 | self._week = self._makeTimestampAttribute(attributes["week"]) |
nothing calls this directly
no test coverage detected