Skip to content
Snippets Groups Projects
Commit 6c0b28ca authored by Tom Prince's avatar Tom Prince
Browse files

Fix import order in `.api`.

parent cb7d6947
Branches
No related tags found
1 merge request!242Run black and isort over the codebase.
......@@ -20,7 +20,10 @@ __all__ = [
"ZKAPAuthorizer",
]
from ._plugin import ZKAPAuthorizer
from ._storage_client import ZKAPAuthorizerStorageClient
from ._storage_server import LeaseRenewalRequired, ZKAPAuthorizerStorageServer
from .storage_common import MorePassesRequired
# This needs to be imported after the above, since it imports those things from here.
# isort: split
from ._plugin import ZKAPAuthorizer
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment