mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 12:02:17 +00:00
14b107b5a1
Moves all subdirectories from 'simnet/client' to 'simnet/client/components' and adds the `__all__` variable to all affected files. This change is intended to improve code organization and make it easier to manage exported symbols from these modules.
8 lines
181 B
Python
8 lines
181 B
Python
from httpx import Headers as _Headers
|
|
|
|
__all__ = ("Headers",)
|
|
|
|
|
|
class Headers(_Headers):
|
|
"""An extension of the `httpx.Headers` class that includes additional functionality."""
|