Skip to content

Commit 18e0ae4

Browse files
Drop private imports from test_exported_members.py (#2573)
Co-authored-by: Tom Christie <[email protected]>
1 parent ef06f7d commit 18e0ae4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_exported_members.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import httpx
2-
from httpx import __all__ as exported_members
32

43

54
def test_all_imports_are_exported() -> None:
65
included_private_members = ["__description__", "__title__", "__version__"]
7-
assert exported_members == sorted(
6+
assert httpx.__all__ == sorted(
87
(
98
member
109
for member in vars(httpx).keys()

0 commit comments

Comments
 (0)