(self)
| 376 | time.sleep(0.5) |
| 377 | |
| 378 | def _clear_credentials(self): |
| 379 | try: |
| 380 | for f in os.listdir(CREDS_DIR): |
| 381 | if f.endswith('.csv'): |
| 382 | os.remove(os.path.join(CREDS_DIR, f)) |
| 383 | except Exception: |
| 384 | pass |
| 385 | self._show_message("Credentials Cleared!", ON_COLOR) |
| 386 | time.sleep(0.5) |
| 387 | |
| 388 | def _clear_stolen(self): |
| 389 | try: |
no test coverage detected