Skip to content

Commit

Permalink
Add dependency: typing-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
acmacunlay committed Oct 8, 2024
1 parent 6799954 commit 63d8e72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pywaveshare"
version = "0.5.0a0"
dependencies = ["RPi.GPIO", "pyserial"]
dependencies = ["pyserial", "RPi.GPIO", "typing-extensions"]
requires-python = ">=3.7"
authors = [{ name = "Tarek Tounsi", email = "software@tounsi.de" }]
maintainers = [
Expand Down
4 changes: 3 additions & 1 deletion src/pywaveshare/boards/sim868/typedefs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import typing

SMSSend = typing.TypedDict(
import typing_extensions

SMSSend = typing_extensions.TypedDict(
"SMSSend",
{
"Recipients": typing.List[str],
Expand Down

0 comments on commit 63d8e72

Please sign in to comment.