From 78c9fda3f9b7d9e585bdec14e1cc58e1b29b0b31 Mon Sep 17 00:00:00 2001 From: Garrett Wright Date: Fri, 6 Feb 2026 09:51:40 -0500 Subject: [PATCH] new black style update --- tests/test_wbemd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_wbemd.py b/tests/test_wbemd.py index 9c256b8bd9..9ca4897a87 100644 --- a/tests/test_wbemd.py +++ b/tests/test_wbemd.py @@ -10,7 +10,7 @@ def _smoothed_disk_image(x, y, radius, width, height): - (Y, X) = mgrid[:height, :width] + Y, X = mgrid[:height, :width] ratio = ((X - x) ** 2 + (Y - y) ** 2) / (radius**2) return 2.0 - 2 / (1 + np.exp(-ratio)) # Scaled sigmoid funciton