Correct spelling mistakes.

This commit is contained in:
Edward Betts
2018-06-08 20:32:50 +01:00
parent 96e846aa82
commit feb9dafa16
6 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ class Dependency(object):
for attr_name in cls.required_attr_names:
if not attr_name in cls.__dict__:
raise NotImplementedError(
"Attribute '{}' has not been overriden in class '{}'" \
"Attribute '{}' has not been overridden in class '{}'" \
.format(attr_name, cls.__name__)
)