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_notifier.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'shared/tests/test_notifier.py') diff --git a/shared/tests/test_notifier.py b/shared/tests/test_notifier.py index 09e731a..3d29830 100644 --- a/shared/tests/test_notifier.py +++ b/shared/tests/test_notifier.py @@ -1,12 +1,10 @@ """Tests for Telegram notification service.""" -import os + import uuid from decimal import Decimal -from datetime import datetime, timezone from unittest.mock import AsyncMock, MagicMock, patch import pytest -import pytest_asyncio from shared.models import Signal, Order, OrderSide, OrderType, OrderStatus, Position from shared.notifier import TelegramNotifier -- cgit v1.2.3