sh_cpl/src/cpl_query/extension/list.py

8 lines
172 B
Python
Raw Normal View History

2021-07-26 15:52:27 +02:00
from .._extension.iterable import Iterable
2021-07-25 19:15:02 +02:00
2021-07-26 15:21:57 +02:00
class List(Iterable):
2021-07-25 19:15:02 +02:00
2021-07-26 15:21:57 +02:00
def __init__(self, t: type = None, values: list = None):
2021-07-27 12:35:14 +02:00
Iterable.__init__(self, t, values)