(self)
| 221 | self.dataHandler.updatePriority(keyList[idx], priorityList[idx]) |
| 222 | |
| 223 | def __iter__(self): |
| 224 | for cameraData in self.cameraSettings: |
| 225 | self.dataHandler.setArguments( |
| 226 | phi=cameraData["phiIdx"], n_pos=cameraData["n_posIdx"] |
| 227 | ) |
| 228 | yield cameraData |
| 229 | |
| 230 | |
| 231 | # ----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected