Skip to content

Commit

Permalink
Bugfix the run_task usage
Browse files Browse the repository at this point in the history
The use_reloader argument is not used.
  • Loading branch information
pgjones committed Nov 19, 2023
1 parent 232547e commit 412dd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quart_trio/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def run( # type: ignore
print(f"Running on {scheme}://{host}:{port} (CTRL + C to quit)") # noqa: T201

trio.run( # type: ignore
self.run_task, host, port, debug, use_reloader, ca_certs, certfile, keyfile
self.run_task, host, port, debug, ca_certs, certfile, keyfile
)

def run_task(
Expand Down

0 comments on commit 412dd3c

Please sign in to comment.