Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gotrue/_async/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
class AsyncSupportedStorage(ABC):
@abstractmethod
async def get_item(self, key: str) -> Optional[str]:
...
... # pragma: no cover

@abstractmethod
async def set_item(self, key: str, value: str) -> None:
...
... # pragma: no cover

@abstractmethod
async def remove_item(self, key: str) -> None:
...
... # pragma: no cover


class AsyncMemoryStorage(AsyncSupportedStorage):
Expand Down
6 changes: 3 additions & 3 deletions gotrue/_sync/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
class SyncSupportedStorage(ABC):
@abstractmethod
def get_item(self, key: str) -> Optional[str]:
...
... # pragma: no cover

@abstractmethod
def set_item(self, key: str, value: str) -> None:
...
... # pragma: no cover

@abstractmethod
def remove_item(self, key: str) -> None:
...
... # pragma: no cover


class SyncMemoryStorage(SyncSupportedStorage):
Expand Down