(self, url: str)
| 139 | return not self.__lt__(other) |
| 140 | |
| 141 | def _enforce_trailing_slash(self, url: str) -> str: |
| 142 | if not url.endswith("/"): |
| 143 | url += "/" |
| 144 | return url |
| 145 | |
| 146 | def update(self, usage: Dict[str, int]) -> "Resource": |
| 147 | current_time = time.time() |