Skip to content

Commit

Permalink
table.read(): use getsize() API rather than values
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed May 27, 2021
1 parent 9b25c69 commit fe8b863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omero/hdfstorageV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def _rowstocols(self, rows, colNumbers, cols):
col.fromrows(rows)
rv.append(col)
if not l:
l = len(col.values)
l = col.getsize()
return rv, l

@stamped
Expand Down

0 comments on commit fe8b863

Please sign in to comment.