From 69c5e0d6dfead68660250553142f76b9978236f1 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 22 Feb 2019 22:46:19 +0000 Subject: [PATCH] Remove unnecessary frozenset --- actioner/scheduler/todoist_assigned_issues.py | 2 +- actioner/scheduler/todoist_repo_prs.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actioner/scheduler/todoist_assigned_issues.py b/actioner/scheduler/todoist_assigned_issues.py index 284490d..656fd24 100644 --- a/actioner/scheduler/todoist_assigned_issues.py +++ b/actioner/scheduler/todoist_assigned_issues.py @@ -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} diff --git a/actioner/scheduler/todoist_repo_prs.py b/actioner/scheduler/todoist_repo_prs.py index 1c8f36f..dec982d 100644 --- a/actioner/scheduler/todoist_repo_prs.py +++ b/actioner/scheduler/todoist_repo_prs.py @@ -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: