mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix form_order's description in tables.py.
This commit is contained in:
parent
cc3d0b60d3
commit
4aa637caf2
1 changed files with 1 additions and 1 deletions
|
@ -1236,7 +1236,7 @@ class PokemonForm(TableBase):
|
|||
info=dict(description=u'Set iff the form can only appear in battle.'))
|
||||
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. "
|
||||
u"order` and `pokemon.order` are generated from this."))
|
||||
u"Used in generating `pokemon_forms.order` and `pokemon.order`."))
|
||||
order = Column(Integer, nullable=False, autoincrement=False,
|
||||
info=dict(description=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