Skip to content

Commit

Permalink
FilenameAssocIterator needs __iter__ method, for py3.13.1 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
neilflood authored Dec 31, 2024
1 parent 6181b1e commit 548bf55
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rios/structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,9 @@ def __next__(self):
else:
raise StopIteration()

def __iter__(self):
return self


class BlockAssociations:
"""
Expand Down

0 comments on commit 548bf55

Please sign in to comment.