Skip to content

Commit 2270ec5

Browse files
committed
Formatting
1 parent 8ee23cb commit 2270ec5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

jarviscli/plugins/jumble.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ def __call__(self, jarvis, s):
1717
dict[sorted_word].append(word)
1818
else:
1919
dict[sorted_word] = [word]
20-
while(True):
21-
jumble = jarvis.input("Enter a jumble to solve or 'quit' to quit:\n")
20+
while (True):
21+
jumble = jarvis.input(
22+
"Enter a jumble to solve or 'quit' to quit:\n")
2223
jumble = jumble.lower()
23-
if(jumble == "quit"):
24+
if (jumble == "quit"):
2425
break
2526
jumble = ''.join(sorted(jumble))
2627
if jumble in dict:

0 commit comments

Comments
 (0)