(self)
| 1841 | return max(low_limit, min(high_limit, secstatus)) |
| 1842 | |
| 1843 | def activeModulesIter(self): |
| 1844 | for mod in self.modules: |
| 1845 | if mod.state >= FittingModuleState.ACTIVE: |
| 1846 | yield mod |
| 1847 | |
| 1848 | def activeDronesIter(self): |
| 1849 | for drone in self.drones: |
no outgoing calls
no test coverage detected