mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 19:33:10 +00:00
fix: @C-Garza fix
This commit is contained in:
parent
6c307583b9
commit
028ae7f9d9
1 changed files with 1 additions and 1 deletions
|
@ -1278,7 +1278,7 @@ def _build_pokemons():
|
|||
has_gender_differences=bool(int(info[13])) if info[13] != "" else False,
|
||||
growth_rate_id=int(info[14]) if info[14] != "" else None,
|
||||
forms_switchable=bool(int(info[15])) if info[15] != "" else None,
|
||||
order=int(info[16]) if info[16] != "" else None,
|
||||
order=int(info[18]) if info[18] != "" else None,
|
||||
)
|
||||
|
||||
build_generic((PokemonSpecies,), "pokemon_species.csv", csv_record_to_objects)
|
||||
|
|
Loading…
Reference in a new issue