Skip to content

Commit 7b4e0e9

Browse files
committed
fix type-hints arguments
1 parent 8c29860 commit 7b4e0e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

digital_image_processing/rotation/rotation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55

66
def get_rotation(
7-
img: np.array, pt1: np.float32, pt2: np.float32, rows: int, cols: int
8-
) -> np.array:
7+
img: np.ndarray, pt1: np.float32, pt2: np.float32, rows: int, cols: int
8+
) -> np.ndarray:
99
"""
1010
Get image rotation
1111
:param img: np.array

0 commit comments

Comments
 (0)