Moved implementations to extensions

This commit is contained in:
2021-11-02 17:28:36 +01:00
parent d7881774a8
commit c5b1a95661
6 changed files with 9 additions and 27 deletions

View File

@@ -1,7 +1,9 @@
from .._extension.iterable import Iterable
from iterable import Iterable
class List(Iterable):
r"""Implementation of :class: `cpl_query.Iterable`
"""
def __init__(self, t: type = None, values: list = None):
Iterable.__init__(self, t, values)