Skip to content

Commit 18e700f

Browse files
committed
Fix code style issues with Black
1 parent fa1bd20 commit 18e700f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

2_intermediate/chapter11/solutions/number_mystery_1.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Use this function on 1,2,3 and print it. Use this function on 5,13,7 and
66
# print it
77

8+
89
def num_mystery(first_int, second_int, third_int):
910
sum_of_three = first_int + second_int + third_int
1011
largest = max(first_int, second_int, third_int)
@@ -13,7 +14,6 @@ def num_mystery(first_int, second_int, third_int):
1314

1415
return sum_of_three * diff_ls
1516

16-
print(num_mystery(1,2,3))#should print 12
17-
print(num_mystery(5,13,7))#should print 200
18-
19-
17+
18+
print(num_mystery(1, 2, 3)) # should print 12
19+
print(num_mystery(5, 13, 7)) # should print 200

0 commit comments

Comments
 (0)