(self)
| 795 | return module |
| 796 | |
| 797 | def _get_reload_token(self) -> float: |
| 798 | try: |
| 799 | return os.path.getmtime(self._reload_token_path) |
| 800 | except FileNotFoundError: |
| 801 | return 0.0 |
| 802 | except Exception: |
| 803 | return 0.0 |
| 804 | |
| 805 | def _touch_reload_token(self) -> None: |
| 806 | try: |
no outgoing calls