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/strategy-engine/src/strategy_engine/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'services/strategy-engine/src/strategy_engine/main.py') diff --git a/services/strategy-engine/src/strategy_engine/main.py b/services/strategy-engine/src/strategy_engine/main.py index fabd755..9f3b3c9 100644 --- a/services/strategy-engine/src/strategy_engine/main.py +++ b/services/strategy-engine/src/strategy_engine/main.py @@ -43,7 +43,9 @@ async def run() -> None: engine = StrategyEngine(broker=broker, strategies=strategies) - health = HealthCheckServer("strategy-engine", port=config.health_port + 1, auth_token=config.metrics_auth_token) + health = HealthCheckServer( + "strategy-engine", port=config.health_port + 1, auth_token=config.metrics_auth_token + ) health.register_check("redis", broker.ping) await health.start() metrics.service_up.labels(service="strategy-engine").set(1) -- cgit v1.2.3