Skip to content

Commit 3f59db7

Browse files
agronholmFuyukai
authored andcommitted
Added missing thread_local item to sniffio.__all__
1 parent a6291da commit 3f59db7

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

newsfragments/44.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added missing ``thread_local`` to ``sniffio.__all__``

sniffio/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
"""Top-level package for sniffio."""
22

33
__all__ = [
4-
"current_async_library", "AsyncLibraryNotFoundError",
5-
"current_async_library_cvar"
4+
"current_async_library",
5+
"AsyncLibraryNotFoundError",
6+
"current_async_library_cvar",
7+
"thread_local",
68
]
79

810
from ._version import __version__

0 commit comments

Comments
 (0)