Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
eigenpy
Commits
34107b89
Commit
34107b89
authored
May 03, 2022
by
Guilhem Saurel
Browse files
unit tests: fix super() for python 2
parent
2e5fb1ce
Pipeline
#18504
passed with stage
in 1 minute and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
unittest/python/test_eigen_ref.py
View file @
34107b89
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment