futapi / fut

fut is a simple library for managing Fifa 19 Ultimate Team.
GNU General Public License v3.0
317 stars 138 forks source link

Nationality ('n' in dict) is not exists anymore #403

Open maziarkaveh opened 6 years ago

maziarkaveh commented 6 years ago

https://github.com/futapi/fut/blob/f8b44d55c486578db2e6835e4f3bd98d9ce4be60/fut/core.py#L263

maziarkaveh commented 6 years ago

could be replaced with 'nationality': i['n'] if 'n' in i else 0

oczkers commented 6 years ago

or just 'nationality': i.get('n', 0)

it's not returned anymore or just in some cases?