Skip to content

Commit

Permalink
style(pre-commit.ci): auto fixes from pre-commit hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 3, 2025
1 parent 10a960a commit 4526139
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion basilisk/server_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ def manage_rcv_data(self, data: bytes) -> None:
url = data.split(':', 1)[1].strip()
if '\n' in url:
url, name = url.split('\n', 1)
wx.CallAfter(self.frame.current_tab.add_attachment_url_thread, url)
wx.CallAfter(
self.frame.current_tab.add_attachment_url_thread, url
)
else:
log.error(f"no action for data: {data}")

Expand Down

0 comments on commit 4526139

Please sign in to comment.