Skip to content

Commit

Permalink
Fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kjelljorner committed Jun 23, 2022
1 parent ddccc12 commit deca0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion morfeus/conformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ def _get_rmsd_obrms_iter(self, i_s: Array1DInt, j_s: Array1DInt) -> Array2DFloat
f"{p_test.as_posix()} --minimize".split(" "),
capture_output=True,
)
row_rmsds = np.genfromtxt(process.stdout.splitlines(), usecols=(-1))
row_rmsds = np.genfromtxt(process.stdout.splitlines(), usecols=(-1)) # type: ignore
rmsds.append(row_rmsds)
rmsds: Array2DFloat = np.vstack(rmsds)

Expand Down

0 comments on commit deca0c6

Please sign in to comment.