Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com 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 Jun 16, 2024
1 parent eb98a7b commit 677a3cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/esbonio/esbonio/lsp/sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,9 @@ def preview(self, options: Dict[str, Any]) -> Dict[str, Any]:
server = make_preview_server(self.app.outdir) # type: ignore[arg-type]
self.preview_port = server.server_port

self.preview_process = PreviewExecutor(target=server.serve_forever, daemon=True)
self.preview_process = PreviewExecutor(
target=server.serve_forever, daemon=True
)
self.preview_process.start()

if not self.preview_process and not IS_LINUX:
Expand Down

0 comments on commit 677a3cd

Please sign in to comment.