We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d127f9 commit 8978835Copy full SHA for 8978835
1 file changed
.manager/src/proman/script/cca.py
@@ -1,14 +1,17 @@
1
from __future__ import annotations
2
3
-import argparse
4
import sys
+from typing import TYPE_CHECKING
5
from pathlib import Path
6
7
from loggerman import logger
8
9
import controlman
10
from controlman.exception import ControlManException
11
12
+if TYPE_CHECKING:
13
+ import argparse
14
+
15
16
def run(
17
*,
0 commit comments