(self)
| 157 | self.dataHandler.updatePriority(keyList[idx], priorityList[idx]) |
| 158 | |
| 159 | def __iter__(self): |
| 160 | for cameraData in self.cameraSettings: |
| 161 | self.dataHandler.setArguments( |
| 162 | phi=cameraData["phiIdx"], theta=cameraData["thetaIdx"] |
| 163 | ) |
| 164 | yield cameraData |
| 165 | |
| 166 | |
| 167 | # ----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected