Skip to content

Commit df43adb

Browse files
style: pre-commit fixes
1 parent 924bb24 commit df43adb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stratify/tests/test_vinterp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def test_npts(self):
331331
class Test_custom_extrap_kernel(unittest.TestCase):
332332
class my_kernel(vinterp.PyFuncExtrapolator):
333333
def __init__(self, *args, **kwargs):
334-
super(Test_custom_extrap_kernel.my_kernel, self).__init__(*args, **kwargs)
334+
super().__init__(*args, **kwargs)
335335

336336
def extrap_kernel(self, direction, z_src, fz_src, level, output_array):
337337
output_array[:] = -10

0 commit comments

Comments
 (0)