Skip to content

Commit

Permalink
Update .pre-commit-config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlospaco committed May 4, 2024
1 parent 17a4db5 commit f0890cb
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions supabase_auth/_async/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@

class AsyncSupportedStorage(ABC):
@abstractmethod
async def get_item(self, key: str) -> Optional[str]:
... # pragma: no cover
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
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
async def remove_item(self, key: str) -> None: ... # pragma: no cover


class AsyncMemoryStorage(AsyncSupportedStorage):
Expand Down

0 comments on commit f0890cb

Please sign in to comment.