(self, attributes: tuple[int, int, int])
| 75 | return self._week.value |
| 76 | |
| 77 | def _useAttributes(self, attributes: tuple[int, int, int]) -> None: |
| 78 | self._week = self._makeTimestampAttribute(attributes[0]) |
| 79 | self._additions = self._makeIntAttribute(attributes[1]) |
| 80 | self._deletions = self._makeIntAttribute(attributes[2]) |
nothing calls this directly
no test coverage detected