Skip to content

Commit 63d8e72

Browse files
committed
Add dependency: typing-extensions
1 parent 6799954 commit 63d8e72

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "pywaveshare"
77
version = "0.5.0a0"
8-
dependencies = ["RPi.GPIO", "pyserial"]
8+
dependencies = ["pyserial", "RPi.GPIO", "typing-extensions"]
99
requires-python = ">=3.7"
1010
authors = [{ name = "Tarek Tounsi", email = "[email protected]" }]
1111
maintainers = [

src/pywaveshare/boards/sim868/typedefs.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import typing
22

3-
SMSSend = typing.TypedDict(
3+
import typing_extensions
4+
5+
SMSSend = typing_extensions.TypedDict(
46
"SMSSend",
57
{
68
"Recipients": typing.List[str],

0 commit comments

Comments
 (0)