Skip to content

Commit cb57da0

Browse files
committed
Line continuation follows PEP8
1 parent 28fdf60 commit cb57da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/searching/bmh_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def search(text, pattern):
5555
pattern_index = pattern_length - 1
5656
text_index = search_index
5757
while text_index >= 0 and \
58-
text[text_index] == pattern[pattern_index]:
58+
text[text_index] == pattern[pattern_index]:
5959
pattern_index -= 1
6060
text_index -= 1
6161
if pattern_index == -1:

0 commit comments

Comments
 (0)