diff --git a/src/quart_trio/app.py b/src/quart_trio/app.py
index 68e9bd2..228e387 100644
--- a/src/quart_trio/app.py
+++ b/src/quart_trio/app.py
@@ -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(