We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b39210d commit 0e6d5d9Copy full SHA for 0e6d5d9
src/fprime_bootstrap/clone_project.py
@@ -18,7 +18,7 @@
18
GitCloneError,
19
)
20
21
-from typing import TYPE_CHECKING
+from typing import TYPE_CHECKING, Tuple
22
23
if TYPE_CHECKING:
24
import argparse
@@ -57,7 +57,7 @@ def clone_project(parsed_args: "argparse.Namespace"):
57
58
def clone_git_repo(
59
target_dir: Path, remote_url: str, new_name: str = None
60
-) -> tuple[Path, Path]:
+) -> Tuple[Path, Path]:
61
"""Clone an F´ project using git. Uses new_name if provided for local project name
62
Returns the path to the project and the path to the F´ submodule within the project
63
"""
0 commit comments