Skip to content
Snippets Groups Projects
Unverified Commit 9958e358 authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #281 from nim65s/devel

unit tests: fix super() for python 2
parents 2e5fb1ce 34107b89
No related branches found
No related tags found
No related merge requests found
......@@ -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