# Простенький метод class Item(list): def __init__(self): self.Visible = True def Add(self): newItem = Item() self.append(newItem) return newItem class Properties: def __init__(self): self.Items = Item() p = Properties() print(p.Items) # [] p.Items.Add() print(p.Items) # [[]]