diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:28:14 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:28:14 +0900 |
| commit | 72d29b4798f2594465f384982f0fc932a1f6c880 (patch) | |
| tree | a140c639f8595f9631e49f30f38996044b9d3f5f /services/strategy-engine/src | |
| parent | 23e60d37f8f55386ab7c1378a50db11a9c386dc6 (diff) | |
fix: lint cleanup for API, combined strategy, and formatting
Diffstat (limited to 'services/strategy-engine/src')
| -rw-r--r-- | services/strategy-engine/src/strategy_engine/main.py | 4 |
1 files changed, 3 insertions, 1 deletions
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) |
