Skip to content

Commit 8fc1345

Browse files
authored
Remove typing in __init__.py (#262)
1 parent 1a913d1 commit 8fc1345

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

azure/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
"""Base module for the Python Durable functions."""
22
from pkgutil import extend_path
3-
import typing
4-
__path__: typing.Iterable[str] = extend_path(__path__, __name__)
3+
__path__ = extend_path(__path__, __name__)

0 commit comments

Comments
 (0)