Skip to content

Commit

Permalink
chore: run formatters
Browse files Browse the repository at this point in the history
  • Loading branch information
AceofSpades5757 committed May 23, 2024
1 parent 4810594 commit 25d180c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/clipboard/html_clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@ def _update_byte_counts(self, content: B) -> B:

re_value = r"(None|-?\d+)"

re_start_html = re.compile(rf"StartHTML:{re_value}", flags=re.MULTILINE)
re_start_html = re.compile(
rf"StartHTML:{re_value}", flags=re.MULTILINE
)
re_end_html = re.compile(rf"EndHTML:{re_value}", flags=re.MULTILINE)
re_start_fragment = re.compile(
rf"StartFragment:{re_value}", flags=re.MULTILINE
Expand Down

0 comments on commit 25d180c

Please sign in to comment.