Skip to content

Commit 35ecd22

Browse files
author
Josep Cugat
committed
Changed variable in httpx.__init__ to be private
1 parent cb12433 commit 35ecd22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

httpcore/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555

5656
__locals = locals()
5757

58-
for name in __all__:
59-
if not name.startswith("__"):
60-
setattr(__locals[name], "__module__", "httpcore") # noqa
58+
for _name in __all__:
59+
if not _name.startswith("__"):
60+
setattr(__locals[_name], "__module__", "httpcore") # noqa

0 commit comments

Comments
 (0)