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 <noreply@anthropic.com>
This commit is contained in:
Julio Quinteros Pro 2026-02-15 21:15:52 -03:00
parent 8ea0c93d67
commit f2b6c38c86

View file

@ -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]