Remove unreachable code from ManualSchema

ManualSchema.get_link had two return statements. Prune the second
(unreachable) return.
This commit is contained in:
Jeremy Lainé 2018-01-23 21:15:56 +01:00
parent 78367ba102
commit 9aa6d68956

View File

@ -456,8 +456,6 @@ class ManualSchema(ViewInspector):
description=self._description
)
return self._link
class DefaultSchema(object):
"""Allows overriding AutoSchema using DEFAULT_SCHEMA_CLASS setting"""