Skip to content

Commit

Permalink
Fix flake8 issue raised following the Rocky Linux 9 image upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Jan 11, 2024
1 parent dd23237 commit 9412168
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/omero_metadata/populate.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,8 @@ def _load(self):
self.plates_by_id = dict()
images_by_id = dict()
self.images_by_id[self.target_object.id.val] = images_by_id
for plate in (l.child for l in self.target_object.copyPlateLinks()):
plates = [link.child for link in self.target_object.copyPlateLinks()]
for plate in plates:
parameters = omero.sys.ParametersI()
parameters.addId(plate.id.val)
plate = query_service.findByQuery((
Expand Down

0 comments on commit 9412168

Please sign in to comment.