(self)
| 30 | class JargonLoader: |
| 31 | |
| 32 | def __init__(self): |
| 33 | self._user_jargon_mtime = 0 # type: int |
| 34 | self._jargon = None # type: Jargon |
| 35 | |
| 36 | def get_jargon(self) -> Jargon: |
| 37 | if self._is_stale(): |
nothing calls this directly
no outgoing calls
no test coverage detected