Skip to content

Commit

Permalink
chore: remove noqa comments
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier committed Nov 14, 2021
1 parent 4c7003e commit 8d2c74e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gotrue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

__version__ = "0.2.0"

from ._async.api import AsyncGoTrueAPI # noqa: F401
from ._async.client import AsyncGoTrueClient # noqa: F401
from ._async.storage import AsyncMemoryStorage, AsyncSupportedStorage # noqa: F401
from ._sync.api import SyncGoTrueAPI # noqa: F401
from ._sync.client import SyncGoTrueClient # noqa: F401
from ._sync.storage import SyncMemoryStorage, SyncSupportedStorage # noqa: F401
from .types import * # noqa: F401, F403
from ._async.api import AsyncGoTrueAPI
from ._async.client import AsyncGoTrueClient
from ._async.storage import AsyncMemoryStorage, AsyncSupportedStorage
from ._sync.api import SyncGoTrueAPI
from ._sync.client import SyncGoTrueClient
from ._sync.storage import SyncMemoryStorage, SyncSupportedStorage
from .types import *

Client = SyncGoTrueClient
GoTrueAPI = SyncGoTrueAPI

0 comments on commit 8d2c74e

Please sign in to comment.