(self)
| 30 | |
| 31 | class Route: |
| 32 | def __init__(self): |
| 33 | # type: () -> None |
| 34 | self.routes = [] # type: List[Tuple[int, int, str, str, str, int]] |
| 35 | self.invalidate_cache() |
| 36 | if conf.route_autoload: |
| 37 | self.resync() |
| 38 | |
| 39 | def invalidate_cache(self): |
| 40 | # type: () -> None |
nothing calls this directly
no test coverage detected