diff options
author | Frederick Muriuki Muriithi | 2022-04-20 13:26:20 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-04-20 13:26:20 +0300 |
commit | 5897b6ec7fbd1226cd68a292122cc494e46f6829 (patch) | |
tree | eb7cf72b8da2546aded142e684b9b84ac02a23d9 /quality_control/errors.py | |
parent | 8954890bd7410d79ce151196f406b8e1b6985238 (diff) | |
download | gn-uploader-5897b6ec7fbd1226cd68a292122cc494e46f6829.tar.gz |
Fix linting issues
Diffstat (limited to 'quality_control/errors.py')
-rw-r--r-- | quality_control/errors.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quality_control/errors.py b/quality_control/errors.py index 993748c..0802159 100644 --- a/quality_control/errors.py +++ b/quality_control/errors.py @@ -19,5 +19,6 @@ class DuplicateHeader(Exception): super().__init__(self, *args) class ParseError(Exception): - def __init(self, *args): - super().__init__(*args) + """Raised if any of the above exceptions are raised""" + def __init__(self, *args): + super().__init__(self, *args) |