chore(pylint): Re-enable super-with-arguments check (#16138)

Co-authored-by: John Bodley <john.bodley@airbnb.com>
This commit is contained in:
John Bodley
2021-08-16 09:00:24 -07:00
committed by GitHub
parent ee9a384758
commit 8e07dd28bc
4 changed files with 5 additions and 6 deletions

View File

@@ -161,7 +161,7 @@ class TopNDashboardsStrategy(Strategy):
name = "top_n_dashboards"
def __init__(self, top_n: int = 5, since: str = "7 days ago") -> None:
super(TopNDashboardsStrategy, self).__init__()
super().__init__()
self.top_n = top_n
self.since = parse_human_datetime(since) if since else None
@@ -206,7 +206,7 @@ class DashboardTagsStrategy(Strategy):
name = "dashboard_tags"
def __init__(self, tags: Optional[List[str]] = None) -> None:
super(DashboardTagsStrategy, self).__init__()
super().__init__()
self.tags = tags or []
def get_urls(self) -> List[str]: