summaryrefslogtreecommitdiff
path: root/services/order-executor/src
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:47:46 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:47:46 +0900
commit70a33a5236fd9c3b51b8db0cbaf11376f9817ac5 (patch)
tree29fe63368852d55e6246d6645b2421cc7f77444c /services/order-executor/src
parentc294e9df6207973306f58186d278e12399f162a3 (diff)
fix: lint cleanup after critical and high priority fixes
Diffstat (limited to 'services/order-executor/src')
-rw-r--r--services/order-executor/src/order_executor/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/order-executor/src/order_executor/main.py b/services/order-executor/src/order_executor/main.py
index f111c75..4a51d5d 100644
--- a/services/order-executor/src/order_executor/main.py
+++ b/services/order-executor/src/order_executor/main.py
@@ -66,7 +66,9 @@ async def run() -> None:
stream = "signals"
health = HealthCheckServer(
- "order-executor", port=config.health_port + HEALTH_PORT_OFFSET, auth_token=config.metrics_auth_token
+ "order-executor",
+ port=config.health_port + HEALTH_PORT_OFFSET,
+ auth_token=config.metrics_auth_token,
)
health.register_check("redis", broker.ping)
await health.start()