Check if this is the first run
(self)
| 90 | self._save_settings() |
| 91 | |
| 92 | def is_first_run(self) -> bool: |
| 93 | """Check if this is the first run""" |
| 94 | return self.get_setting("first_run", True) |
| 95 | |
| 96 | def mark_first_run_complete(self): |
| 97 | """Mark first run as complete""" |
no test coverage detected