We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c59b321 commit d1a3e5aCopy full SHA for d1a3e5a
1 file changed
spec_cleaner/rpmexception.py
@@ -6,7 +6,7 @@ class RpmBaseExceptionError(Exception):
6
7
def __init__(self, args=()) -> None:
8
"""Initialise class."""
9
- Exception.__init__(self)
+ super().__init__(*args)
10
self.args = args
11
12
def __str__(self) -> str:
0 commit comments