etlplus 0.4.0__py3-none-any.whl → 0.4.5__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.
etlplus/__main__.py CHANGED
@@ -11,8 +11,7 @@ from .cli import main
11
11
 
12
12
 
13
13
  def _run() -> int:
14
- """Return the exit status from :func:`etlplus.cli.main`."""
15
-
14
+ """Return the exit status."""
16
15
  return main()
17
16
 
18
17
 
@@ -0,0 +1,15 @@
1
+ """
2
+ :mod:`etlplus.cli` package.
3
+
4
+ This package defines the main command-line interface (CLI) command and
5
+ subcommands for ``etlplus``.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ from .main import main
11
+
12
+ # SECTION: EXPORTS ========================================================== #
13
+
14
+
15
+ __all__ = ['main']