Update quotes in commands-and-handlers example

This commit is contained in:
Roman Mogylatov 2021-09-30 16:53:27 -04:00
parent 02b9793189
commit a9173496b4
2 changed files with 3 additions and 3 deletions

View File

@ -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()

View File

@ -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")