Skip to content
Snippets Groups Projects
Commit 34107b89 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

unit tests: fix super() for python 2

parent 2e5fb1ce
No related branches found
No related tags found
No related merge requests found
Pipeline #18504 passed with warnings
......@@ -49,7 +49,7 @@ def test(mat):
class ModifyBlockImpl(modify_block):
def __init__(self):
super().__init__()
super(ModifyBlockImpl, self).__init__()
def call(self, mat):
n, m = mat.shape
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment