dq-made-easy-cli 0.6.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
dq_cli/__init__.py ADDED
@@ -0,0 +1,16 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import TYPE_CHECKING
4
+
5
+ __all__ = ["main"]
6
+
7
+ if TYPE_CHECKING:
8
+ from .run_plan import main as main
9
+
10
+
11
+ def __getattr__(name: str):
12
+ if name == "main":
13
+ from .run_plan import main as run_plan_main
14
+
15
+ return run_plan_main
16
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")