Skip to content

Commit ac2d987

Browse files
Fix super() first argument to be current class
1 parent cf4a8dc commit ac2d987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyslicer/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ def __init__(self, *args, **kwargs):
565565

566566
class QueryCountInvalidParameterErrorException(SlicingDiceException):
567567
def __init__(self, *args, **kwargs):
568-
super(QueryLevelLimitException, self).__init__(
568+
super(QueryCountInvalidParameterErrorException, self).__init__(
569569
self, *args, **kwargs)
570570

571571

0 commit comments

Comments
 (0)