Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoz committed Jun 25, 2021
1 parent cc5cf10 commit cc7b7f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/omero/hdfstorageV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ def __init__(self):

@locked
def addOrThrow(self, hdfpath, hdfstorage, read_only=False):

if hdfpath in self.__paths:
raise omero.LockTimeout(
None, None, "Path already in HdfList: %s" % hdfpath)
Expand Down Expand Up @@ -578,9 +579,9 @@ def readCoordinates(self, stamp, rowNumbers, current):
def read(self, stamp, colNumbers, start, stop, current):
self.__initcheck()
self.__sizecheck(colNumbers, None)

all_cols = self.cols(None, current)
cols = [all_cols[i] for i in colNumbers]

for col in cols:
col.read(self.__mea, start, stop)
if start is not None and stop is not None:
Expand Down

0 comments on commit cc7b7f3

Please sign in to comment.