Skip to content
Snippets Groups Projects
Commit dab5cf61 authored by Ed Rogers's avatar Ed Rogers
Browse files

Add return type annotation

parent 17ca35b1
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ class HearingTest:
return text
def mean_two_arrays(a: np.ndarray, b: np.ndarray):
def mean_two_arrays(a: np.ndarray, b: np.ndarray) -> np.ndarray:
return np.mean(np.array([a, b]), axis=0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment