Skip to content

Commit 21aceda

Browse files
committed
Tweak manage-cookie branch name
1 parent a3f5e77 commit 21aceda

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cookie_python/manage/repo.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717

1818

1919
class RepoSandbox:
20-
def __init__(self, repo: str, dry_run: bool = False) -> None:
20+
def __init__(
21+
self, repo: str, dry_run: bool = False, branch: str = "manage-cookie"
22+
) -> None:
2123
self._stack = contextlib.ExitStack()
2224
self.repo = self.gh.find_repo(repo)
23-
self.branch = "update-cookie"
25+
self.branch = branch
2426
self.dry_run = dry_run
2527

2628
def __enter__(self) -> RepoSandbox:

0 commit comments

Comments
 (0)