Skip to content

Commit ccdbc8e

Browse files
committed
MAINT: shutting up mypy complaints
1 parent 740184c commit ccdbc8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meeseeksdev/meeseeksbox/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def push_the_work(session, payload, arguments, local_config=None):
432432
"GET", f"https://api.github.com/repos/{org_name}/{repo_name}"
433433
).json()["default_branch"]
434434
repo.git.checkout(default_branch)
435-
repo.branches.workbranch.delete(repo, "workbranch", force=True) # type:ignore[attr-defined]
435+
repo.branches.workbranch.delete(repo, "workbranch", force=True)
436436
return succeeded
437437

438438

@@ -994,7 +994,7 @@ def keen_stats():
994994
succeeded = False
995995

996996
repo.git.checkout(default_branch)
997-
repo.branches.workbranch.delete(repo, "workbranch", force=True) # type:ignore[attr-defined]
997+
repo.branches.workbranch.delete(repo, "workbranch", force=True)
998998

999999
# TODO checkout the default_branch and get rid of branch
10001000

0 commit comments

Comments
 (0)