From 72cfdad5e3faa57b08a75d2111d24482755c6b8e Mon Sep 17 00:00:00 2001 From: airano Date: Thu, 19 Feb 2026 03:40:08 +0330 Subject: [PATCH] style: fix black formatting in health.py Co-Authored-By: Claude Opus 4.6 --- core/health.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/health.py b/core/health.py index 4e4823b..343c079 100644 --- a/core/health.py +++ b/core/health.py @@ -540,9 +540,7 @@ class HealthMonitor: from plugins import registry as plugin_registry config_dict = config.to_dict() - plugin_instance = plugin_registry.create_instance( - plugin_type, site_id, config_dict - ) + plugin_instance = plugin_registry.create_instance(plugin_type, site_id, config_dict) return await plugin_instance.health_check() except Exception as e: logger.debug( @@ -553,9 +551,7 @@ class HealthMonitor: # Fallback: basic HTTP check if plugin instantiation fails return await self._basic_http_health_check(config.url, project_id) - async def _basic_http_health_check( - self, url: str | None, project_id: str - ) -> dict[str, Any]: + async def _basic_http_health_check(self, url: str | None, project_id: str) -> dict[str, Any]: """Basic HTTP health check as a last-resort fallback.""" import aiohttp