add an already configured account.
(self, account)
| 290 | print("[acsetup]", f"{time.time() - self.init_time:.3f}", *args) |
| 291 | |
| 292 | def add_configured(self, account): |
| 293 | """add an already configured account.""" |
| 294 | assert account.is_configured() |
| 295 | self._account2state[account] = self.CONFIGURED |
| 296 | self.log("added already configured account", account, account.get_config("addr")) |
| 297 | |
| 298 | def start_configure(self, account): |
| 299 | """add an account and start its configure process.""" |
no test coverage detected