From dff544163f56e00f58e1c445d175a78fdac4adc2 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 4 May 2024 17:41:06 -0400 Subject: [PATCH] src/sage/geometry/cone_critical_angles.py: more spaces around * --- src/sage/geometry/cone_critical_angles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sage/geometry/cone_critical_angles.py b/src/sage/geometry/cone_critical_angles.py index a116dc61648..78d5a884e27 100644 --- a/src/sage/geometry/cone_critical_angles.py +++ b/src/sage/geometry/cone_critical_angles.py @@ -847,12 +847,12 @@ def check_gevp_feasibility(cos_theta, xi, eta, G_I, G_I_c_T, v = H_J * eta_hat rhs = v - cos_theta*G_I*xi_hat - if any(x < -epsilon for x in G_I_c_T*rhs): + if any(x < -epsilon for x in G_I_c_T * rhs): return infeasible_result u = G_I * xi_hat rhs = u - cos_theta*H_J*eta_hat - if any(x < -epsilon for x in H_J_c_T*rhs): + if any(x < -epsilon for x in H_J_c_T * rhs): return infeasible_result return (True, u, v)