Skip to content

Commit

Permalink
Remove Images and Files from FilesetWrapper._getQueryString()
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Mar 28, 2024
1 parent cf3f968 commit b86cd89
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/omero/gateway/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7546,10 +7546,7 @@ def _getQueryString(cls, opts=None):
NB: No options supported for this class.
:return: Tuple of string, list, ParametersI
"""
query = "select obj from Fileset obj "\
"left outer join fetch obj.images as image "\
"left outer join fetch obj.usedFiles as usedFile " \
"join fetch usedFile.originalFile"
query = "select obj from Fileset obj"
return query, [], omero.sys.ParametersI()

def _loadImages(self):
Expand Down

0 comments on commit b86cd89

Please sign in to comment.