archive
/
actioner
Archived
1
Fork 0

Remove unnecessary frozenset

This commit is contained in:
Jake Howard 2019-02-22 22:46:19 +00:00
parent e41622fe4a
commit 69c5e0d6df
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ from actioner.clients import github, todoist
from actioner.utils import get_todoist_project_from_repo
from actioner.utils.github import get_existing_task, get_issue_link
REPOS = frozenset(["srobo/tasks", "srobo/core-team-minutes"])
REPOS = ["srobo/tasks", "srobo/core-team-minutes"]
LABEL_TO_STATUS = {"must have": 4, "critical": 4, "should have": 2}

View File

@ -9,7 +9,7 @@ from actioner.utils.github import get_existing_task, get_issue_link
logger = logging.getLogger(__name__)
REPOS = frozenset(["srobo/core-team-minutes"])
REPOS = ["srobo/core-team-minutes"]
def pr_to_task_name(pr: PullRequest) -> str: