Drop compat workaround for unsupported Python 3.2

This commit is contained in:
Jon Dufresne 2018-01-07 08:39:05 -08:00
parent 5f42cb7027
commit 8a1d177810

View File

@ -115,8 +115,7 @@ except ImportError:
try:
import coreapi
import uritemplate
except (ImportError, SyntaxError):
# SyntaxError is possible under python 3.2
except ImportError:
coreapi = None
uritemplate = None