(self)
| 53 | self._jargon = Jargon(jargondata) |
| 54 | |
| 55 | def _get_user_jargon_mtime(self) -> int: |
| 56 | if USER_JARGON_PATH is None or not os.path.isfile(USER_JARGON_PATH): |
| 57 | return 0 |
| 58 | return os.stat(USER_JARGON_PATH).st_mtime |
| 59 | |
| 60 | @staticmethod |
| 61 | def init_user_jargon(jargon_path): |
no test coverage detected