mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix PokemonForm.form_order docstring
This commit is contained in:
parent
e71043ae14
commit
5f54b3057d
1 changed files with 6 additions and 2 deletions
|
@ -1787,8 +1787,12 @@ class PokemonForm(TableBase):
|
||||||
is_mega = Column(Boolean, nullable=False,
|
is_mega = Column(Boolean, nullable=False,
|
||||||
doc=u'Records whether this form is a Mega Evolution.')
|
doc=u'Records whether this form is a Mega Evolution.')
|
||||||
form_order = Column(Integer, nullable=False, autoincrement=False,
|
form_order = Column(Integer, nullable=False, autoincrement=False,
|
||||||
info=dict(description=u"The order in which forms should be sorted within a species' forms. Multiple forms may have equal order, in which case they should fall back on sorting by name. "
|
doc=u"""The order in which forms should be sorted within a species' forms.
|
||||||
u"Used in generating `pokemon_forms.order` and `pokemon.order`."))
|
|
||||||
|
Multiple forms may have equal order, in which case they should fall
|
||||||
|
back on sorting by name. Used in generating `pokemon_forms.order`
|
||||||
|
and `pokemon.order`.
|
||||||
|
""")
|
||||||
order = Column(Integer, nullable=False, autoincrement=False,
|
order = Column(Integer, nullable=False, autoincrement=False,
|
||||||
doc=u'The order in which forms should be sorted within all forms. Multiple forms may have equal order, in which case they should fall back on sorting by name.')
|
doc=u'The order in which forms should be sorted within all forms. Multiple forms may have equal order, in which case they should fall back on sorting by name.')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue