Skip to content

Commit deca0c6

Browse files
committed
Fix typing issue
1 parent ddccc12 commit deca0c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

morfeus/conformer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ def _get_rmsd_obrms_iter(self, i_s: Array1DInt, j_s: Array1DInt) -> Array2DFloat
13371337
f"{p_test.as_posix()} --minimize".split(" "),
13381338
capture_output=True,
13391339
)
1340-
row_rmsds = np.genfromtxt(process.stdout.splitlines(), usecols=(-1))
1340+
row_rmsds = np.genfromtxt(process.stdout.splitlines(), usecols=(-1)) # type: ignore
13411341
rmsds.append(row_rmsds)
13421342
rmsds: Array2DFloat = np.vstack(rmsds)
13431343

0 commit comments

Comments
 (0)