From 388cbd0da07dc9be8ee98e7b7e19345936b3bf8d Mon Sep 17 00:00:00 2001 From: Dhruva Kumar Date: Fri, 28 Aug 2026 22:44:30 +0530 Subject: [PATCH] Update noxfile.py --- noxfile.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/noxfile.py b/noxfile.py index 484a8d39a..12a01667e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -33,10 +33,12 @@ def build(session, autobuild=False): Make the website. """ session.install("-r", "requirements.txt") - - if autobuild: - command = "sphinx-autobuild" - extra_args = "--host", "0.0.0.0" +if autobuild: + command = "sphinx-autobuild" + extra_args = ( + "--host", + "0.0.0.0", + ) else: # NOTE: This branch adds options that are unsupported by autobuild command = "sphinx-build"