Skip to content

Commit

Permalink
Tweak manage-cookie branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
smkent committed Feb 22, 2023
1 parent a3f5e77 commit 21aceda
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cookie_python/manage/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@


class RepoSandbox:
def __init__(self, repo: str, dry_run: bool = False) -> None:
def __init__(
self, repo: str, dry_run: bool = False, branch: str = "manage-cookie"
) -> None:
self._stack = contextlib.ExitStack()
self.repo = self.gh.find_repo(repo)
self.branch = "update-cookie"
self.branch = branch
self.dry_run = dry_run

def __enter__(self) -> RepoSandbox:
Expand Down

0 comments on commit 21aceda

Please sign in to comment.