From 4e774084bc770cec51fbcc88705a23383c512f34 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 21 May 2025 12:51:01 -0400 Subject: [PATCH] Style: add blank lines between class definitions and attributes in annotated attribute example --- examples/wiring/example_attribute_annotated.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/wiring/example_attribute_annotated.py b/examples/wiring/example_attribute_annotated.py index 69d2769e..e302e218 100644 --- a/examples/wiring/example_attribute_annotated.py +++ b/examples/wiring/example_attribute_annotated.py @@ -11,6 +11,7 @@ class Service: class Container(containers.DeclarativeContainer): + service = providers.Factory(Service) @@ -18,6 +19,7 @@ service: Annotated[Service, Provide[Container.service]] class Main: + service: Annotated[Service, Provide[Container.service]]