Skip to content

Commit bc2c1b3

Browse files
committed
Fix for python 3.7
1 parent 67cb678 commit bc2c1b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_unitcells.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_build_unit_cell(cif_data, n_decimal_places, cols):
9797
parsnip_positions = read_data @ cif_data.file.lattice_vectors.T
9898
else:
9999
auxiliary_arr, parsnip_positions = read_data
100-
parsnip_positions @= cif_data.file.lattice_vectors.T
100+
parsnip_positions = parsnip_positions @ cif_data.file.lattice_vectors.T
101101

102102
che_symbols = _arrstrip(auxiliary_arr[:, 0], r"[^A-Za-z]+")
103103
if isinstance(cols, list):

0 commit comments

Comments
 (0)