Fixes: #4710 provided return type

This commit is contained in:
avivfaraj
2021-09-04 12:53:35 -04:00
committed by GitHub
parent ff2a162bdd
commit 6550183d99

View File

@@ -21,7 +21,7 @@ from math import pi, sin
g = 9.80665
def angle_to_radians(angle):
def angle_to_radians(angle : float) -> float:
"""
Convert an angle from degrees to randians
"""