mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 14:14:17 +00:00
fix: use False for gender_diff
This commit is contained in:
parent
7ceba2f1b1
commit
6c307583b9
1 changed files with 1 additions and 1 deletions
|
@ -1275,7 +1275,7 @@ def _build_pokemons():
|
|||
base_happiness=int(info[10]) if info[10] != "" else None,
|
||||
is_baby=bool(int(info[11])) if info[11] != "" else None,
|
||||
hatch_counter=int(info[12]) if info[12] != "" else None,
|
||||
has_gender_differences=bool(int(info[13])) if info[13] != "" else None,
|
||||
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,
|
||||
|
|
Loading…
Reference in a new issue