Skip to content

Commit

Permalink
new styles
Browse files Browse the repository at this point in the history
  • Loading branch information
artiebears13 committed Nov 24, 2023
1 parent 0b612ce commit e888703
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion project/source/string_processing/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
def find_start_end(string, pattern):
print(f"{string=} {pattern=}")
matches = re.finditer(pattern, string)
print("hui")
start_end_list = []
for match in matches:
start_end_list.append((match.start(), match.end()))
Expand Down

0 comments on commit e888703

Please sign in to comment.