You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the Python 3.13 documentation the type signature of the callback is def callback(identity: str | None) -> bytes. But currently it is defined as Callable[[str | None], tuple[str | None, bytes]] | None (see here).