File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ History:
12
12
- MSS: fix Flake8 C408: Unnecessary dict call - rewrite as a literal, in exceptions.py
13
13
- MSS: fix Flake8 I100: Import statements are in the wrong order
14
14
- MSS: fix Flake8 I201: Missing newline before sections or imports
15
+ - MSS: fix PyLint bad-super-call: Bad first argument 'Exception' given to super()
15
16
16
17
3.3.2 2018/11/20
17
18
- new contributors: hugovk, Andreas Buhr
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ class ScreenShotError(Exception):
10
10
11
11
def __init__ (self , message , details = None ):
12
12
# type: (Dict[str, Any]) -> None
13
- super (Exception , self ).__init__ (message )
13
+ super (ScreenShotError , self ).__init__ (message )
14
14
self .details = details or {}
You can’t perform that action at this time.
0 commit comments