Get a specific element.
(self, day: int, hour: int)
| 65 | self._dict = {} |
| 66 | |
| 67 | def get(self, day: int, hour: int) -> int: |
| 68 | """ |
| 69 | Get a specific element. |
| 70 | """ |
| 71 | return self._dict[(day, hour)] |
| 72 | |
| 73 | def _useAttributes(self, attributes: Any) -> None: |
| 74 | for day, hour, commits in attributes: |
no outgoing calls
no test coverage detected