Skip to content

Commit d1a3e5a

Browse files
committed
Use super().__init__ in RpmBaseExceptionError
This will fix the flake8 linter in CI
1 parent c59b321 commit d1a3e5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec_cleaner/rpmexception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class RpmBaseExceptionError(Exception):
66

77
def __init__(self, args=()) -> None:
88
"""Initialise class."""
9-
Exception.__init__(self)
9+
super().__init__(*args)
1010
self.args = args
1111

1212
def __str__(self) -> str:

0 commit comments

Comments
 (0)