Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 6e6c895

Browse files
committed
formatting
1 parent d0eaba7 commit 6e6c895

9 files changed

Lines changed: 30 additions & 40 deletions

File tree

gapic/templates/noxfile.py.j2

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,9 @@ def docs(session):
238238
"-W", # warnings as errors
239239
"-T", # show full traceback on exception
240240
"-N", # no colors
241-
"-b",
242-
"html",
243-
"-d",
244-
os.path.join("docs", "_build", "doctrees", ""),
241+
"-b", "html", # builder
242+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
243+
# paths to build:
245244
os.path.join("docs", ""),
246245
os.path.join("docs", "_build", "html", ""),
247246
)

noxfile.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -669,10 +669,9 @@ def docs(session):
669669
"-W", # warnings as errors
670670
"-T", # show full traceback on exception
671671
"-N", # no colors
672-
"-b",
673-
"html",
674-
"-d",
675-
os.path.join("docs", "_build", "doctrees", ""),
672+
"-b", "html", # builder
673+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
674+
# paths to build:
676675
os.path.join("docs", ""),
677676
os.path.join("docs", "_build", "html", ""),
678677
)
@@ -715,10 +714,9 @@ def docfx(session):
715714
"sphinx.ext.viewcode,"
716715
"recommonmark"
717716
),
718-
"-b",
719-
"html",
720-
"-d",
721-
os.path.join("docs", "_build", "doctrees", ""),
717+
"-b", "html", # builder
718+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
719+
# paths to build:
722720
os.path.join("docs", ""),
723721
os.path.join("docs", "_build", "html", ""),
724722
)

tests/integration/goldens/asset/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/credentials/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/eventarc/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/logging/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/logging_internal/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/redis/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

tests/integration/goldens/redis_selective/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,9 @@ def docs(session):
244244
"-W", # warnings as errors
245245
"-T", # show full traceback on exception
246246
"-N", # no colors
247-
"-b",
248-
"html",
249-
"-d",
250-
os.path.join("docs", "_build", "doctrees", ""),
247+
"-b", "html", # builder
248+
"-d", os.path.join("docs", "_build", "doctrees", ""), # cache directory
249+
# paths to build:
251250
os.path.join("docs", ""),
252251
os.path.join("docs", "_build", "html", ""),
253252
)

0 commit comments

Comments
 (0)