Persist current in-memory token state.
(self)
| 445 | return True |
| 446 | |
| 447 | async def commit(self): |
| 448 | """Persist current in-memory token state.""" |
| 449 | await self._save() |
| 450 | |
| 451 | async def remove(self, token: str) -> bool: |
| 452 | """ |
no test coverage detected