Skip to content

Commit 562ee6c

Browse files
committed
Add typing extensions as dependency (#102)
1 parent 1af64ce commit 562ee6c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

python/pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ classifiers = [
1212
"Programming Language :: Python :: Implementation :: CPython",
1313
"Programming Language :: Python :: Implementation :: PyPy",
1414
]
15+
dependencies = [
16+
"typing-extensions"
17+
]
1518

1619
[project.urls]
1720
repository = "https://github.com/Kimahriman/hdfs-native"

python/python/hdfs_native/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import io
2-
from typing import Iterator, Optional
2+
from typing import Iterator
33
from typing_extensions import Buffer
44

55
from ._internal import *

0 commit comments

Comments
 (0)