Skip to content

Commit

Permalink
fix invalid import
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 31, 2024
1 parent 6f28448 commit c805610
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion valorant/models/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from typing import Any

from pydantic import Field
from pydantic.color import Color
from pydantic_extra_types.color import Color

from ..enums import AbilitySlot
from .base import BaseModel, BaseUUIDModel, LocalizedField
Expand Down
2 changes: 1 addition & 1 deletion valorant/models/competitive_tiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

from pydantic import Field
from pydantic.color import Color
from pydantic_extra_types.color import Color

from ..enums import DivisionTier
from .base import BaseModel, BaseUUIDModel, LocalizedField
Expand Down
2 changes: 1 addition & 1 deletion valorant/models/content_tiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

from pydantic import Field
from pydantic.color import Color
from pydantic_extra_types.color import Color

from .base import BaseUUIDModel, LocalizedField

Expand Down

0 comments on commit c805610

Please sign in to comment.