8 lines
167 B
Python
8 lines
167 B
Python
from argus import _argus
|
|
from argus._argus import * # noqa: F401
|
|
|
|
__all__ = []
|
|
|
|
__doc__ = _argus.__doc__
|
|
if hasattr(_argus, "__all__"):
|
|
__all__ += _argus.__all__
|