mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Tweak Pokemon width/height docstrings
This commit is contained in:
parent
5f54b3057d
commit
29824c73f4
1 changed files with 2 additions and 2 deletions
|
@ -1590,9 +1590,9 @@ class Pokemon(TableBase):
|
|||
species_id = Column(Integer, ForeignKey('pokemon_species.id'),
|
||||
doc=u"ID of the species this Pokémon belongs to")
|
||||
height = Column(Integer, nullable=False,
|
||||
doc=u"The height of the Pokémon, in decimeters (tenths of a meter)")
|
||||
doc=u"The height of the Pokémon, in tenths of a meter (decimeters)")
|
||||
weight = Column(Integer, nullable=False,
|
||||
doc=u"The weight of the Pokémon, in tenths of a kilogram (decigrams)")
|
||||
doc=u"The weight of the Pokémon, in tenths of a kilogram (hectograms)")
|
||||
base_experience = Column(Integer, nullable=False,
|
||||
doc=u"The base EXP gained when defeating this Pokémon")
|
||||
order = Column(Integer, nullable=False, index=True,
|
||||
|
|
Loading…
Reference in a new issue