Skip to content

Commit

Permalink
fix: remove typing-extensions (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
newwingbird authored Oct 15, 2024
1 parent c36d80f commit c2eed40
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ conda activate supabase-py

### PyPi installation

Install the package (for Python > 3.7):
Install the package (for Python >= 3.9):

```bash
# with pip
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ gotrue = "^2.9.0"
httpx = ">=0.26,<0.28"
storage3 = "^0.8.0"
supafunc = "^0.6.0"
typing-extensions = "^4.12.2"

[tool.poetry.dev-dependencies]
pre-commit = "^3.8.0"
Expand Down
10 changes: 5 additions & 5 deletions supabase/types.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing_extensions import NotRequired, TypedDict
from typing import TypedDict


class RealtimeClientOptions(TypedDict, total=False):
auto_reconnect: NotRequired[bool]
hb_interval: NotRequired[int]
max_retries: NotRequired[int]
initial_backoff: NotRequired[float]
auto_reconnect: bool
hb_interval: int
max_retries: int
initial_backoff: float

0 comments on commit c2eed40

Please sign in to comment.