(self, key)
| 403 | return self.__item |
| 404 | |
| 405 | def getModifiedItemAttr(self, key): |
| 406 | if key in self.item.attributes: |
| 407 | return self.item.attributes[key].value |
| 408 | else: |
| 409 | return 0 |
| 410 | |
| 411 | def calculateModifiedAttributes(self, fit, runTime): |
| 412 | if self.__suppressed: # or not self.learned - removed for GH issue 101 |
no outgoing calls