Remove comment

This commit is contained in:
Ebag333
2017-03-09 12:27:45 -08:00
parent 99f939026f
commit 84de420002

View File

@@ -110,20 +110,6 @@ class ModifiedAttributeDict(collections.MutableMapping):
self.__modified = val
def __getitem__(self, key):
'''
# Check if we have final calculated value
if key in self.modified:
if self.modified[key] == self.CalculationPlaceholder:
self.modified[key] = self.__calculateValue(key)
return self.modified[key]
# Then in values which are not yet calculated
elif key in self.__intermediary:
return self.__intermediary[key]
# Original value is the least priority
else:
return self.getOriginal(key)
'''
# Check if we have final calculated value
key_value = self.modified.get(key)
if key_value is self.CalculationPlaceholder: