Skip to content

Commit

Permalink
add type for calc_bond_distance_ortho()
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst authored Dec 10, 2024
1 parent 2c070b7 commit d4b9e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/_distopia.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@


def calc_bond_distance_ortho(
coords1, coords2: np.ndarray, box: np.ndarray, results: np.ndarray
coords1: np.ndarray, coords2: np.ndarray, box: np.ndarray, results: np.ndarray
) -> None:
distopia.calc_bonds_ortho(

Check warning on line 66 in package/MDAnalysis/lib/_distopia.py

View check run for this annotation

Codecov / codecov/patch

package/MDAnalysis/lib/_distopia.py#L66

Added line #L66 was not covered by tests
coords1, coords2, box[:3], results=results
Expand Down

0 comments on commit d4b9e9d

Please sign in to comment.