(self)
| 310 | # Put them in the attrs tuple. |
| 311 | @property |
| 312 | def falloff(self): |
| 313 | attrs = ("falloff", "falloffEffectiveness") |
| 314 | for attr in attrs: |
| 315 | falloff = self.getModifiedItemAttr(attr) |
| 316 | if falloff: |
| 317 | return falloff |
| 318 | |
| 319 | @validates("ID", "itemID", "chargeID", "amount", "amountActive") |
| 320 | def validator(self, key, val): |
nothing calls this directly
no test coverage detected