Skip to content

Commit

Permalink
chore: fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
AceofSpades5757 committed Apr 12, 2024
1 parent 68e1544 commit 446ebb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clipboard/clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def _set_clipboard(
if isinstance(content, bytes):
content_str = content.decode(encoding=HTML_ENCODING)
else:
content_str = content
content_str = content # type: ignore
template: HTMLTemplate = HTMLTemplate(content_str)
html_content_bytes: bytes = template.generate().encode(
encoding=HTML_ENCODING
Expand Down

0 comments on commit 446ebb6

Please sign in to comment.