From 4f0968abb38f7554d23dcbd1302200a0da238266 Mon Sep 17 00:00:00 2001 From: cyuber Date: Fri, 4 Oct 2024 19:51:42 -0400 Subject: [PATCH] reformated test_decisions.py --- tests/unit/test_decision.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_decision.py b/tests/unit/test_decision.py index e073d6ee..0c2d8da3 100644 --- a/tests/unit/test_decision.py +++ b/tests/unit/test_decision.py @@ -41,7 +41,9 @@ def best_pad_within_tolerance() -> object_in_world.ObjectInWorld: # type: ignor location_x = BEST_PAD_LOCATION_X location_y = BEST_PAD_LOCATION_Y spherical_variance = 1.0 - result, pad = object_in_world.ObjectInWorld.create(location_x, location_y, spherical_variance, 0) + result, pad = object_in_world.ObjectInWorld.create( + location_x, location_y, spherical_variance, 0 + ) assert result assert pad is not None @@ -56,7 +58,9 @@ def best_pad_outside_tolerance() -> object_in_world.ObjectInWorld: # type: igno location_x = 100.0 location_y = 200.0 spherical_variance = 5.0 # variance outside tolerance - result, pad = object_in_world.ObjectInWorld.create(location_x, location_y, spherical_variance, 0) + result, pad = object_in_world.ObjectInWorld.create( + location_x, location_y, spherical_variance, 0 + ) assert result assert pad is not None