Skip to content
Snippets Groups Projects
Commit 93ae8f9f authored by tomrink's avatar tomrink
Browse files

snapshot...

parent a1927f9d
No related branches found
No related tags found
No related merge requests found
......@@ -139,8 +139,10 @@ class Files:
def __next__(self):
if self._current_index < len(self.flist):
fname = self.flist[self._current_index]
t_start = self.ftimes[self._current_index, 0]
t_stop = self.ftimes[self._current_index, 1]
self._current_index += 1
return fname
return fname, t_start, t_stop
self._current_index = 0
raise StopIteration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment