Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasst committed Jul 2, 2024
1 parent 7b090a5 commit df468e3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions quotequail/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def find_pattern_on_line(
for regex in regexes:
for m in range(max_wrap_lines):
match_line = join_wrapped_lines(lines[n : n + 1 + m])
# print("tryin match line", n, m, match_line)
if match_line.startswith(">"):
match_line = match_line[1:].strip()
# If this line is blank, break out of the innermost loop
Expand All @@ -44,7 +43,6 @@ def find_pattern_on_line(
if not match_line:
break
if regex.match(match_line.strip()):
# print("match line", n, m, match_line)
match position:
case Position.Begin:
return n, typ
Expand Down

0 comments on commit df468e3

Please sign in to comment.