From 6550183d999e2a4a149790e40de6d536c2d509dd Mon Sep 17 00:00:00 2001 From: avivfaraj <73610201+avivfaraj@users.noreply.github.com> Date: Sat, 4 Sep 2021 12:53:35 -0400 Subject: [PATCH] Fixes: #4710 provided return type --- physics/horizontal_projectile_motion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physics/horizontal_projectile_motion.py b/physics/horizontal_projectile_motion.py index a5b2cff28..09a0d0748 100644 --- a/physics/horizontal_projectile_motion.py +++ b/physics/horizontal_projectile_motion.py @@ -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 """