Skip to content

Commit a7d6cca

Browse files
[pre-commit.ci] pre-commit autoupdate (#345)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 22.12.0 → 23.1.0](psf/black@22.12.0...23.1.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f35c1e3 commit a7d6cca

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repos:
1111
hooks:
1212
- id: trailing-whitespace
1313
- repo: https://github.com/psf/black
14-
rev: 22.12.0
14+
rev: 23.1.0
1515
hooks:
1616
- id: black
1717
- repo: https://github.com/cheshirekow/cmake-format-precommit

unittest/python/test_eigen_ref.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616

1717
def test_fill_print(mat):
18-
1918
print("print matrix:")
2019
printMatrix(mat)
2120
print("calling fill():")

unittest/python/test_return_by_ref.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
def test_shared(mat):
7-
87
m_ref = mat.ref()
98
m_ref.fill(0)
109
m_copy = mat.copy()
@@ -26,7 +25,6 @@ def test_shared(mat):
2625

2726

2827
def test_not_shared(mat):
29-
3028
m_ref = mat.ref()
3129
m_ref.fill(100.0)
3230
m_copy = mat.copy()

0 commit comments

Comments
 (0)