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.
1 parent aa8a99d commit 825b536Copy full SHA for 825b536
patchwork/steps/CreatePR/CreatePR.py
@@ -1,4 +1,5 @@
1
from pathlib import Path
2
+from typing_extensions import Optional
3
4
import git
5
from git.exc import GitCommandError
@@ -149,7 +150,7 @@ def create_pr(
149
150
base_branch_name: str,
151
target_branch_name: str,
152
scm_client: ScmPlatformClientProtocol,
- issue_url: str | None = None,
153
+ issue_url: Optional[str] = None,
154
force: bool = False,
155
):
156
prs = scm_client.find_prs(repo_slug, original_branch=base_branch_name, feature_branch=target_branch_name)
0 commit comments