mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
chore(pylint): Re-enable super-with-arguments check (#16138)
Co-authored-by: John Bodley <john.bodley@airbnb.com>
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user