Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions pyenumerable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
"""
Implementation of .NET's IEnumerable interface in python W/ support for generics.
""" # noqa: E501

from pyenumerable.constructors import pp_enumerable
from pyenumerable.implementations import PurePythonEnumerable
from pyenumerable.protocol import Enumerable

__all__ = ["Enumerable", "PurePythonEnumerable", "pp_enumerable"]
__author__ = "AmirHossein Ahmadi"
__license__ = "WTFPL"
__version__ = "2.0.0"
__version__ = "2.0.1"
__maintainer__ = "AmirHossein Ahmadi"
__email__ = "[email protected]"
__documentation__ = "https://github.com/amirongit/PyEnumerable/blob/master/documentation.md"
Loading