Skip to content

Commit 3ac6ef0

Browse files
committed
Slight code formatting, to minimize diff
1 parent 4e186ac commit 3ac6ef0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

shiny/_autoreload.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,7 @@ def start_server(port: int, app_port: int, launch_browser: bool):
186186
# Run on a background thread so our event loop doesn't interfere with uvicorn.
187187
# Set daemon=True because we don't want to keep the process alive with this thread.
188188
threading.Thread(
189-
None,
190-
_thread_main,
191-
args=[port, app_url, secret, launch_browser],
192-
daemon=True,
189+
None, _thread_main, args=[port, app_url, secret, launch_browser], daemon=True
193190
).start()
194191

195192

0 commit comments

Comments
 (0)