From fe691cac08e64a4de25fd18a37a2bb85448c0f15 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Sun, 15 Feb 2026 21:15:12 -0300 Subject: [PATCH] Remove unused pytest import and add trailing newline - Removed unused pytest import (caplog fixture was removed) - Added missing trailing newline at end of file Addresses Greptile feedback (minor style issues). Co-Authored-By: Claude Sonnet 4.5 --- tests/test_litellm/test_cost_calculation_log_level.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_litellm/test_cost_calculation_log_level.py b/tests/test_litellm/test_cost_calculation_log_level.py index b511b20f5e4..8ee9ad95cd0 100644 --- a/tests/test_litellm/test_cost_calculation_log_level.py +++ b/tests/test_litellm/test_cost_calculation_log_level.py @@ -3,8 +3,6 @@ import logging import os import sys -import pytest - sys.path.insert(0, os.path.abspath("../../..")) import litellm @@ -139,4 +137,4 @@ def test_batch_cost_calculation_uses_debug_level(): finally: # Clean up: remove handler and restore original logger level verbose_logger.removeHandler(handler) - verbose_logger.setLevel(original_level) \ No newline at end of file + verbose_logger.setLevel(original_level)