fix(ruff): add missing Set and Dict imports to fix F821 errors

This commit is contained in:
Ishaan Jaffer 2026-02-21 10:52:40 -08:00
parent 7eddb90a33
commit 1ce23c8cc4
2 changed files with 2 additions and 2 deletions

View file

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

View file

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