From 879ebcb3194a607a261f03ce39648deda6720fc0 Mon Sep 17 00:00:00 2001 From: elpekenin Date: Mon, 27 Oct 2025 19:57:11 +0100 Subject: [PATCH] fix typos --- src/tcgdexsdk/models/Card.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tcgdexsdk/models/Card.py b/src/tcgdexsdk/models/Card.py index 41e9c9c..49835b5 100644 --- a/src/tcgdexsdk/models/Card.py +++ b/src/tcgdexsdk/models/Card.py @@ -31,13 +31,13 @@ class Card(Model): """The card possible variants""" set: SetResume """Resume of the set the card belongs to""" - dexIDs: Optional[List[int]] + dexId: Optional[List[int]] """the Pokémon Pokédex IDs (multiple if multiple pokémon appears on the card)""" hp: Optional[int] """HP of the pokemon""" types: Optional[List[str]] """Types of the pokemon (multiple because some have multiple in the older sets)""" - evolvesFrom: Optional[str] + evolveFrom: Optional[str] """Name of the pokemon this one evolves from""" description: Optional[str] """the Pokémon Pokédex like description"""