From f2b6c38c8672801af4903ad6c4c66debbbb36cbd Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Sun, 15 Feb 2026 21:15:52 -0300 Subject: [PATCH] Remove redundant import inside test method The module litellm.videos.main is already imported at the top of the file (line 21), so the import inside the test method is redundant. Addresses Greptile feedback (minor style issue). Co-Authored-By: Claude Sonnet 4.5 --- tests/test_litellm/test_video_generation.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_litellm/test_video_generation.py b/tests/test_litellm/test_video_generation.py index 0d90b5188f1..121bf1a1f03 100644 --- a/tests/test_litellm/test_video_generation.py +++ b/tests/test_litellm/test_video_generation.py @@ -735,8 +735,6 @@ class TestVideoLogging: Note: Uses AsyncMock with side_effect pattern for reliable parallel execution. """ - import litellm.videos.main as videos_main - custom_logger = self.TestVideoLogger() litellm.logging_callback_manager._reset_all_callbacks() litellm.callbacks = [custom_logger]