We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf8bb0 commit 075a8f7Copy full SHA for 075a8f7
1 file changed
sphinx_autobuild/__main__.py
@@ -227,7 +227,13 @@ def _add_autobuild_arguments(parser):
227
default=False,
228
help="open the browser after building documentation",
229
)
230
-
+ group.add_argument(
231
+ "--delay",
232
+ type=float,
233
+ default=0,
234
+ help="how long to wait before opening the browser (deprecated, no effect)",
235
+ **({"deprecated": True} if sys.version_info >= (3, 13) else {}),
236
+ )
237
group.add_argument(
238
"--watch",
239
action="append",
0 commit comments