Skip to content

Commit ad12c8b

Browse files
1 parent 6e6c895 commit ad12c8b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

noxfile.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -669,8 +669,10 @@ def docs(session):
669669
"-W", # warnings as errors
670670
"-T", # show full traceback on exception
671671
"-N", # no colors
672-
"-b", "html", # builder
673-
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
672+
"-b",
673+
"html", # builder
674+
"-d",
675+
os.path.join("docs", "_build", "doctrees", ""), # cache directory
674676
# paths to build:
675677
os.path.join("docs", ""),
676678
os.path.join("docs", "_build", "html", ""),
@@ -714,8 +716,10 @@ def docfx(session):
714716
"sphinx.ext.viewcode,"
715717
"recommonmark"
716718
),
717-
"-b", "html", # builder
718-
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
719+
"-b",
720+
"html", # builder
721+
"-d",
722+
os.path.join("docs", "_build", "doctrees", ""), # cache directory
719723
# paths to build:
720724
os.path.join("docs", ""),
721725
os.path.join("docs", "_build", "html", ""),

0 commit comments

Comments
 (0)