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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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