From 9a3a16c6fe4d60a16ea95a008f9904a14253eefb Mon Sep 17 00:00:00 2001
From: Rotem Albukrek <95996826+RotRotAl@users.noreply.github.com>
Date: Wed, 7 Aug 2024 16:32:07 +0300
Subject: [PATCH] fix(decorators-3.py): fix the printing format

---
 08.Decorators/decorators-6.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/08.Decorators/decorators-6.py b/08.Decorators/decorators-6.py
index 150ca31..7de58e6 100644
--- a/08.Decorators/decorators-6.py
+++ b/08.Decorators/decorators-6.py
@@ -14,7 +14,7 @@ def decorated(string_args):
 
 @decorator
 def alsoDecorated(num1, num2):
-    print("Sum of " + str(num1) + "and" + str(num2) + ": " + str(num1 + num2))
+    print("Sum of " + str(num1) + " and " + str(num2) + ": " + str(num1 + num2))
 
 
 if __name__ == "__main__":
@@ -26,5 +26,5 @@ def alsoDecorated(num1, num2):
 This function takes 1 arguments
 This happened: Hello
 This function takes 2 arguments
-Sum of 1and2: 3
-'''
\ No newline at end of file
+Sum of 1 and 2: 3
+'''