(fitID, notes)
| 258 | |
| 259 | @staticmethod |
| 260 | def editNotes(fitID, notes): |
| 261 | fit = eos.db.getFit(fitID) |
| 262 | if fit: |
| 263 | fit.notes = notes |
| 264 | eos.db.commit() |
| 265 | |
| 266 | def toggleFactorReload(self, value=None): |
| 267 | self.serviceFittingOptions['useGlobalForceReload'] = value if value is not None else not self.serviceFittingOptions['useGlobalForceReload'] |
no test coverage detected