We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f5e77 commit 21acedaCopy full SHA for 21aceda
1 file changed
cookie_python/manage/repo.py
@@ -17,10 +17,12 @@
17
18
19
class RepoSandbox:
20
- def __init__(self, repo: str, dry_run: bool = False) -> None:
+ def __init__(
21
+ self, repo: str, dry_run: bool = False, branch: str = "manage-cookie"
22
+ ) -> None:
23
self._stack = contextlib.ExitStack()
24
self.repo = self.gh.find_repo(repo)
- self.branch = "update-cookie"
25
+ self.branch = branch
26
self.dry_run = dry_run
27
28
def __enter__(self) -> RepoSandbox:
0 commit comments