mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix a Unicode docstring
This commit is contained in:
parent
41a168a0e2
commit
bb49a6bc39
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ class Berry(TableBase):
|
|||
soil_dryness = Column(Integer, nullable=False,
|
||||
info=dict(description="The speed at which this Berry dries out the soil as it grows. A higher rate means the soil dries more quickly."))
|
||||
smoothness = Column(Integer, nullable=False,
|
||||
info=dict(description="The smoothness of this Berry, used in making Pokéblocks or Poffins"))
|
||||
info=dict(description=u"The smoothness of this Berry, used in making Pokéblocks or Poffins"))
|
||||
|
||||
class BerryFirmness(TableBase):
|
||||
u"""A Berry firmness, such as "hard" or "very soft".
|
||||
|
|
Loading…
Reference in a new issue