From 72d29b4798f2594465f384982f0fc932a1f6c880 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:28:14 +0900 Subject: fix: lint cleanup for API, combined strategy, and formatting --- services/data-collector/src/data_collector/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'services/data-collector/src/data_collector/main.py') diff --git a/services/data-collector/src/data_collector/main.py b/services/data-collector/src/data_collector/main.py index 81e13df..4384985 100644 --- a/services/data-collector/src/data_collector/main.py +++ b/services/data-collector/src/data_collector/main.py @@ -49,7 +49,9 @@ async def run() -> None: on_candle=on_candle, ) - health = HealthCheckServer("data-collector", port=config.health_port, auth_token=config.metrics_auth_token) + health = HealthCheckServer( + "data-collector", port=config.health_port, auth_token=config.metrics_auth_token + ) health.register_check("redis", broker.ping) await health.start() metrics.service_up.labels(service="data-collector").set(1) -- cgit v1.2.3