We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 150f67d + b521479 commit b80f6fdCopy full SHA for b80f6fd
libs/platform-lib/src/platform_lib/__main__.py
@@ -0,0 +1,15 @@
1
+from __future__ import annotations
2
+
3
+import logging
4
5
+from platform_lib.helpers import _set_logging_level, parse_args
6
+from platform_lib.main import main
7
8
+log = logging.getLogger(__name__)
9
10
+if __name__ == "__main__":
11
+ args = parse_args()
12
13
+ _set_logging_level(verbosity=args.verbosity, set_debug=args.debug)
14
15
+ main(options=args)
0 commit comments