pynodes.py 85 B

1234
  1. from .abstract_nodes import List as AbstractList
  2. class List(AbstractList):
  3. pass