From 5897b6ec7fbd1226cd68a292122cc494e46f6829 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 20 Apr 2022 13:26:20 +0300 Subject: Fix linting issues --- quality_control/errors.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'quality_control/errors.py') 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) -- cgit v1.2.3