Skip to content

Commit

Permalink
fix: untyped argument
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 23, 2022
1 parent 8f7a5a6 commit 9c345e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_wrap_2_pi(angle: float) -> None:

@given(angle=st.floats(allow_nan=False, allow_infinity=False))
@settings(deadline=None)
def test_rotation_matrix_xyz(angle, resources_path: Path) -> None:
def test_rotation_matrix_xyz(angle: float, resources_path: Path) -> None:
"""Test."""
# define functions to test
rotation_functions = {
Expand Down

0 comments on commit 9c345e0

Please sign in to comment.