diff options
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index fa7c51832..72d8e9de4 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -251,7 +251,7 @@ class MGridClass(nd_grid): """ def __init__(self): - super(MGridClass, self).__init__(sparse=False) + super().__init__(sparse=False) mgrid = MGridClass() @@ -298,7 +298,7 @@ class OGridClass(nd_grid): """ def __init__(self): - super(OGridClass, self).__init__(sparse=True) + super().__init__(sparse=True) ogrid = OGridClass() |