Style: add blank lines between class definitions and attributes in annotated attribute example

This commit is contained in:
Roman Mogylatov 2025-05-21 12:51:01 -04:00
parent 7048c35138
commit 4e774084bc

View File

@ -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]]