from bakery import Bakery, Cake
class MyBakery(Bakery):
attribute: int = Cake(1)
MyBakery.non_existent # Type[MyBakery] has no attribute "non_existent"
async with MyBakery() as bakery:
assert bakery.non_existent # "MyBakery" has no attribute "non_existent"
34
Mypy errors for the following case