Skip to content

Commit

Permalink
Add typing extensions as dependency (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimahriman committed May 16, 2024
1 parent 1af64ce commit 562ee6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"typing-extensions"
]

[project.urls]
repository = "https://github.com/Kimahriman/hdfs-native"
Expand Down
2 changes: 1 addition & 1 deletion python/python/hdfs_native/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import io
from typing import Iterator, Optional
from typing import Iterator
from typing_extensions import Buffer

from ._internal import *
Expand Down

0 comments on commit 562ee6c

Please sign in to comment.