diff options
Diffstat (limited to 'pylint/checkers/utils.py')
-rw-r--r-- | pylint/checkers/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py index d37c8ab5d..7f04e22f7 100644 --- a/pylint/checkers/utils.py +++ b/pylint/checkers/utils.py @@ -482,7 +482,7 @@ class UnsupportedFormatCharacter(Exception): format characters.""" def __init__(self, index): - Exception.__init__(self, index) + super().__init__(index) self.index = index |