from abc import ABC from typing import Optional class AbstractRare(ABC): name: type[str] = "Непонятный" adjective: type[str] = "Непонятно, абстрактно"