Skip to content

Commit 429b0c8

Browse files
authored
Merge pull request #87 from smkent/manage-cookie-branch-name
Tweak manage-cookie branch name
2 parents a3f5e77 + 21aceda commit 429b0c8

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

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)