From 29824c73f462c9682279198f3def82db611bac62 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Sun, 6 Jul 2014 11:53:59 -0700 Subject: [PATCH] Tweak Pokemon width/height docstrings --- pokedex/db/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 8c5973b..61b8905 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -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,