From 100aa624ad3f8ad466a95f9da8af30f31f77cc9c Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 16:24:30 +0900 Subject: fix: resolve lint issues and final integration fixes - Fix ambiguous variable name in binance_rest.py - Remove unused volumes variable in volume_profile_strategy.py - Fix import ordering in backtester main.py and test_metrics.py - Auto-format all files with ruff --- shared/tests/test_metrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'shared/tests/test_metrics.py') diff --git a/shared/tests/test_metrics.py b/shared/tests/test_metrics.py index 079f01c..3fd72a7 100644 --- a/shared/tests/test_metrics.py +++ b/shared/tests/test_metrics.py @@ -1,10 +1,11 @@ """Tests for Prometheus metrics utilities.""" -import pytest + from prometheus_client import CollectorRegistry def make_metrics(service_name="test-service", registry=None): from shared.metrics import ServiceMetrics + return ServiceMetrics(service_name, registry=registry) -- cgit v1.2.3