diff --git a/project/source/string_processing/utilities.py b/project/source/string_processing/utilities.py index 8b42b3d..88e79c1 100644 --- a/project/source/string_processing/utilities.py +++ b/project/source/string_processing/utilities.py @@ -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()))