fut
fut copied to clipboard
Nationality ('n' in dict) is not exists anymore
https://github.com/futapi/fut/blob/f8b44d55c486578db2e6835e4f3bd98d9ce4be60/fut/core.py#L263
could be replaced with
'nationality': i['n'] if 'n' in i else 0
or just
'nationality': i.get('n', 0)
it's not returned anymore or just in some cases?