From a9173496b4ca132f9ad83bceea4c94fcb7f64bdf Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Thu, 30 Sep 2021 16:53:27 -0400 Subject: [PATCH] Update quotes in commands-and-handlers example --- .../miniapps/commands-and-handlers/application/__main__.py | 2 +- .../miniapps/commands-and-handlers/application/handler.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/miniapps/commands-and-handlers/application/__main__.py b/examples/miniapps/commands-and-handlers/application/__main__.py index ee7c6de3..672475f8 100644 --- a/examples/miniapps/commands-and-handlers/application/__main__.py +++ b/examples/miniapps/commands-and-handlers/application/__main__.py @@ -4,7 +4,7 @@ from .containers import Container from .commands import SaveRating, DoSomethingElse -if __name__ == '__main__': +if __name__ == "__main__": container = Container() message_bus = container.message_bus() diff --git a/examples/miniapps/commands-and-handlers/application/handler.py b/examples/miniapps/commands-and-handlers/application/handler.py index 0d940801..1c26578c 100644 --- a/examples/miniapps/commands-and-handlers/application/handler.py +++ b/examples/miniapps/commands-and-handlers/application/handler.py @@ -8,7 +8,7 @@ class CommandHandler: self.rating_repo = rating_repo def save_rating(self): - print('Saving rating') + print("Saving rating") def something_else(self): - print('Doing something else') + print("Doing something else")