fix: @C-Garza fix

This commit is contained in:
Alessandro Pezzè 2020-08-10 20:05:39 +02:00
parent 6c307583b9
commit 028ae7f9d9

View file

@ -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)