argus/pyargus/argus/__init__.py
2023-05-03 16:32:49 -07:00

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__