mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
fix(ruff): add missing Set and Dict imports to fix F821 errors
This commit is contained in:
parent
7eddb90a33
commit
1ce23c8cc4
2 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ brand_self so all other major airlines are treated as competitors.
|
|||
|
||||
import json
|
||||
from pathlib import Path
|
||||
from typing import Any, Dict, List, Tuple
|
||||
from typing import Any, Dict, List, Set, Tuple
|
||||
|
||||
from litellm.proxy.guardrails.guardrail_hooks.litellm_content_filter.competitor_intent.base import (
|
||||
BaseCompetitorIntentChecker,
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import json
|
|||
import os
|
||||
import time
|
||||
from datetime import datetime, timezone
|
||||
from typing import Any, List
|
||||
from typing import Any, Dict, List
|
||||
|
||||
import pytest
|
||||
from fastapi import HTTPException
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue