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): def view(self):
"""View property.""" """View property."""
assert self._view is not None, ( assert self._view is not None, (
"Schema generation REQUIRES a view instance. (Hint: you accessed `schema` from " "Schema generation REQUIRES a view instance. (Hint: you accessed "
"the view class rather than an instance.) " "`schema` from the view class rather than an instance.)"
) )
return self._view return self._view