jazzband / django-waffle

A feature flipper for Django
https://waffle.readthedocs.io
BSD 3-Clause "New" or "Revised" License
1.12k stars 258 forks source link

Remove obsolete __future__ imports #416

Closed DavidCain closed 2 years ago

DavidCain commented 2 years ago

django-waffle only supports Python 3, so these imports (formerly useful when the package needed to support Python 2 or 3) are now no-ops.

From Python's docs on __future__, you can see each of the three deleted imports are now no-ops starting with Python 3.0:

https://docs.python.org/3/library/__future__.html