httpx icon indicating copy to clipboard operation
httpx copied to clipboard

Clean up imports in `__init.py__`

Open lovelydinosaur opened this issue 1 year ago • 0 comments
trafficstars

Let's tidy up the imports in __init.py__...

__all__ = [
    # __version__.py
    "__description__",
    "__title__",
    "__version__",

    # _api.py
    "delete",
    "get",
    "head",
    "options",
    "patch",
    "post",
    "put",
    "request",
    "stream",

    # _auth.py
    "Auth",
    "BasicAuth",
    "DigestAuth",
    "NetRCAuth",

    ...
]

lovelydinosaur avatar Oct 21 '24 16:10 lovelydinosaur