Skip to content

Commit

Permalink
Fix validation error on TeapotReplica
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Sep 22, 2024
1 parent e34bb5f commit 090cdd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genshin/models/genshin/teapot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import pydantic

from genshin.models.model import Aliased, APIModel, DateTimeField, Unique
from genshin.models.model import Aliased, APIModel, DateTimeField

__all__ = [
"TeapotReplica",
Expand Down Expand Up @@ -45,7 +45,7 @@ class TeapotReplicaBlueprint(APIModel):
is_invalid: bool


class TeapotReplica(APIModel, Unique):
class TeapotReplica(APIModel):
"""Genshin serenitea pot replica."""

post_id: str
Expand Down

0 comments on commit 090cdd2

Please sign in to comment.