twitchtv / igdb-api-python

Python wrapper for IGDB API version 4
MIT License
74 stars 9 forks source link

Removed f-strings to keep compatibility with older versions of python #7

Closed ReenigneArcher closed 3 years ago

ReenigneArcher commented 3 years ago

I had to make the following changes to get this to work in Python 2.7. From my research anything less than 3.6 won't work with f-strings.

felixnorden commented 3 years ago

Thanks for doing this PR! I just want to mention that we do not intend to support Python 2.7 since it no longer has official support. We will try to maintain support for python 3.x as much as possible, as long as it doesn't introduce major complexities. With that said, this PR is a perfect example of no such complexity being added!