Как проверить все ClassVar внутри класса?
#python #python-typing #class-variables Вопрос: У меня есть класс Python, подобный приведенному ниже: from typing import ClassVar class Foo: bar: ClassVar[int] = 1 def __init__(self): self.spam: int = 2 Как я…