Fixed cpl query for now #134

This commit is contained in:
2022-12-05 14:12:20 +01:00
parent e054ac364e
commit 4afe5c4581
12 changed files with 45 additions and 81 deletions

View File

@@ -11,13 +11,6 @@ class EnumerableABC(QueryableABC):
def __init__(self, t: type = None, values: list = None):
QueryableABC.__init__(self, t, values)
self._remove_error_check = True
def set_remove_error_check(self, _value: bool):
r"""Set flag to check if element exists before removing
"""
self._remove_error_check = _value
def to_iterable(self) -> 'IterableABC':
r"""Converts :class: `cpl_query.enumerable.enumerable_abc.EnumerableABC` to :class: `cpl_query.iterable.iterable_abc.IterableABC`