Skip to content

Commit

Permalink
Add missing base class.
Browse files Browse the repository at this point in the history
  • Loading branch information
lapets committed May 27, 2023
1 parent e26040b commit 4e79b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reiter/reiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import doctest
import collections.abc

class reiter(collections.abc.Iterator):
class reiter(collections.abc.Iterator, collections.abc.Iterable):
"""
Wrapper class for `iterators <https://docs.python.org/3/glossary.html#term-iterator>`__
and `iterables <https://docs.python.org/3/glossary.html#term-iterable>`__ that provides
Expand Down

0 comments on commit 4e79b9d

Please sign in to comment.