Skip to content

Commit 99284eb

Browse files
committed
fix pre-commit warning
1 parent a357b7a commit 99284eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pytest/test_weight_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ def test_weight_writer(k, i, f):
2929
print(w_paths[0])
3030
assert len(w_paths) == 1
3131
w_loaded = np.loadtxt(w_paths[0], delimiter=',').reshape(1, 1)
32-
print(f'{w[0,0]:.14}', f'{w_loaded[0,0]:.14}')
32+
print(f'{w[0, 0]:.14}', f'{w_loaded[0, 0]:.14}')
3333
assert np.all(w == w_loaded)

0 commit comments

Comments
 (0)