This is a property that should get whichever date is available for the fit. @todo: migrate old timestamp data and ensure created / modified are set in database to get rid of this
(self)
| 248 | |
| 249 | @property |
| 250 | def modifiedCoalesce(self): |
| 251 | """ |
| 252 | This is a property that should get whichever date is available for the fit. @todo: migrate old timestamp data |
| 253 | and ensure created / modified are set in database to get rid of this |
| 254 | """ |
| 255 | return self.modified or self.created or datetime.datetime.fromtimestamp(self.timestamp) |
| 256 | |
| 257 | @property |
| 258 | def character(self): |
nothing calls this directly
no outgoing calls
no test coverage detected