Skip to content

Commit a917349

Browse files
committed
Update quotes in commands-and-handlers example
1 parent 02b9793 commit a917349

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/miniapps/commands-and-handlers/application/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .commands import SaveRating, DoSomethingElse
55

66

7-
if __name__ == '__main__':
7+
if __name__ == "__main__":
88
container = Container()
99
message_bus = container.message_bus()
1010

examples/miniapps/commands-and-handlers/application/handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, rating_repo: RatingRepository):
88
self.rating_repo = rating_repo
99

1010
def save_rating(self):
11-
print('Saving rating')
11+
print("Saving rating")
1212

1313
def something_else(self):
14-
print('Doing something else')
14+
print("Doing something else")

0 commit comments

Comments
 (0)