bajillion pep8 fixes to pass tox

This commit is contained in:
Ebag333
2016-12-13 23:31:39 -08:00
parent be53dedb18
commit 28404cd8bb
206 changed files with 3128 additions and 2391 deletions

View File

@@ -132,8 +132,8 @@ class ModifiedAttributeDict(collections.MutableMapping):
return (key for key in all)
def __contains__(self, key):
return (
self.__original is not None and key in self.__original) or key in self.__modified or key in self.__intermediary
return (self.__original is not None and key in self.__original) or \
key in self.__modified or key in self.__intermediary
def __placehold(self, key):
"""Create calculation placeholder in item's modified attribute dict"""