(self)
| 43 | |
| 44 | @property |
| 45 | def model(self): |
| 46 | try: |
| 47 | return self.__dict__["model"] |
| 48 | except KeyError: |
| 49 | raise AttributeError( |
| 50 | "'%s' object has no attribute 'model'" % self.__class__.__name__ |
| 51 | ) |
| 52 | |
| 53 | @model.setter |
| 54 | def model(self, model): |
no outgoing calls
no test coverage detected