Removed SequenceABC
This commit is contained in:
@@ -3,13 +3,12 @@ from typing import Iterable as IterableType
|
||||
from cpl_query.iterable.iterable import Iterable
|
||||
|
||||
|
||||
class List(Iterable, list):
|
||||
class List(Iterable):
|
||||
r"""Implementation of :class: `cpl_query.extension.iterable.Iterable`
|
||||
"""
|
||||
|
||||
def __init__(self, t: type = None, values: IterableType = None):
|
||||
Iterable.__init__(self, t, values)
|
||||
list.__init__(self)
|
||||
|
||||
def to_enumerable(self) -> 'EnumerableABC':
|
||||
r"""Converts :class: `cpl_query.iterable.iterable_abc.IterableABC` to :class: `cpl_query.enumerable.enumerable_abc.EnumerableABC`
|
||||
|
Reference in New Issue
Block a user