Removed trailing whitespace from assertion message

This commit is contained in:
Ryan P Kilby 2018-11-25 21:01:14 -08:00
parent c95cb59657
commit 2497b97091

View File

@ -164,8 +164,8 @@ class ViewInspector(object):
def view(self):
"""View property."""
assert self._view is not None, (
"Schema generation REQUIRES a view instance. (Hint: you accessed `schema` from "
"the view class rather than an instance.) "
"Schema generation REQUIRES a view instance. (Hint: you accessed "
"`schema` from the view class rather than an instance.)"
)
return self._view