from __future__ import annotations class Symbols: __slots__ = 'name' def __init__(self, name): self.name = name