From f9dd55cfd35748a57e54384cf83f04e405efa190 Mon Sep 17 00:00:00 2001 From: Fahad Date: Fri, 8 Aug 2025 11:17:50 +0500 Subject: [PATCH] Fix linting issues: add missing base64 import and remove unused import - Add missing base64 import in providers/base.py - Remove unused base64 import from providers/openai_compatible.py - All tests now pass (19/19 image validation tests) - Code quality checks pass 100% --- providers/base.py | 1 + providers/openai_compatible.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/base.py b/providers/base.py index 971e1ab..b0dcdce 100644 --- a/providers/base.py +++ b/providers/base.py @@ -1,5 +1,6 @@ """Base model provider interface and data classes.""" +import base64 import binascii import logging import os diff --git a/providers/openai_compatible.py b/providers/openai_compatible.py index 7e653d9..e76f727 100644 --- a/providers/openai_compatible.py +++ b/providers/openai_compatible.py @@ -1,6 +1,5 @@ """Base class for OpenAI-compatible API providers.""" -import base64 import copy import ipaddress import logging