feat(profiles): Add profile base and users.

This commit is contained in:
2024-10-06 15:43:49 +10:00
parent 83a63e8a6e
commit 92fee23afa
9 changed files with 332 additions and 85 deletions

View File

@@ -47,7 +47,7 @@ class UserAuthFlow:
self._setup_done.set()
return await ws.receive_json()
async def run(self):
async def run(self) -> TwitchAuthData.UserAuthRow:
if not self._setup_done.is_set():
raise ValueError("Cannot run UserAuthFlow before setup.")
if self._comm_task is None: