TreeNodeLabel.py 244 B

12345678
  1. from pycs.database.Label import Label
  2. class TreeNodeLabel(Label):
  3. """ Extends the TreeNodeLabel class with a children attribute """
  4. def __init__(self, database, row):
  5. super().__init__(database, row)
  6. self.children = []