Skip to content

Commit

Permalink
Flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Sep 13, 2024
1 parent d33f646 commit d8b2bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omero/export_scripts/Batch_ROI_Export.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def log(data):

def is_big_image(image):
"""Return True if image is tiled."""
maxSize = image._conn.getMaxPlaneSize()
return (image.getSizeX() * image.getSizeY()) > (maxSize[0] * maxSize[1])
max_size = image._conn.getMaxPlaneSize()
return (image.getSizeX() * image.getSizeY()) > (max_size[0] * max_size[1])


def get_export_data(conn, script_params, image, units=None):
Expand Down

0 comments on commit d8b2bbd

Please sign in to comment.