Closed Mityuha closed 1 month ago
Playing around bakery's injection into other bakery. Like
from bakery import Bakery, Cake class Bakery1(Bakery): some_value_expected: str = Cake() class Bakery2(Bakery): some_value: str = Cake("123") bakery1: Bakery1 = Cake(Cake(Bakery1, some_value_expected = some_value))
Implemented in #53 and #54 (docs)
Playing around bakery's injection into other bakery. Like