Add __all__ for wiring module

This commit is contained in:
Roman Mogylatov 2020-09-28 15:39:41 -04:00
parent 42b0bde8d2
commit cc1b6ba3e6

View File

@ -17,6 +17,13 @@ else:
from . import providers from . import providers
__all__ = (
'wire',
'unwire',
'Provide',
'Provider',
)
T = TypeVar('T') T = TypeVar('T')
AnyContainer = Any AnyContainer = Any