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

@@ -23,7 +23,7 @@ from superset.models.tags import ObjectTypes
class RegexConverter(BaseConverter):
def __init__(self, url_map: Map, *items: List[str]) -> None:
super(RegexConverter, self).__init__(url_map) # type: ignore
super().__init__(url_map) # type: ignore
self.regex = items[0]