We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35c1e3 commit a7d6ccaCopy full SHA for a7d6cca
.pre-commit-config.yaml
@@ -11,7 +11,7 @@ repos:
11
hooks:
12
- id: trailing-whitespace
13
- repo: https://github.com/psf/black
14
- rev: 22.12.0
+ rev: 23.1.0
15
16
- id: black
17
- repo: https://github.com/cheshirekow/cmake-format-precommit
unittest/python/test_eigen_ref.py
@@ -15,7 +15,6 @@
def test_fill_print(mat):
18
-
19
print("print matrix:")
20
printMatrix(mat)
21
print("calling fill():")
unittest/python/test_return_by_ref.py
@@ -4,7 +4,6 @@
4
5
6
def test_shared(mat):
7
8
m_ref = mat.ref()
9
m_ref.fill(0)
10
m_copy = mat.copy()
@@ -26,7 +25,6 @@ def test_shared(mat):
26
25
27
28
def test_not_shared(mat):
29
30
31
m_ref.fill(100.0)
32
0 commit comments