Removed Python 3.3 polyfill (we already dropped support)

This commit is contained in:
Raphael Michel
2015-09-09 17:53:10 +02:00
parent 7b179f3ea5
commit 181f1fe36d
3 changed files with 1 additions and 8 deletions

View File

@@ -1,7 +1,4 @@
try: # NOQA
from enum import Enum
except ImportError: # NOQA
from flufl.enum import Enum # remove this dependency when support for python <=3.3 is dropped
from enum import Enum
from django.apps import apps