Skip to content

Commit d66f371

Browse files
committed
fix html compile warnings
1 parent 918896e commit d66f371

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
3636

3737
html_theme = "furo"
38-
html_static_path = ["_static"]
38+
# html_static_path = ["_static"]
3939

4040
# Furo theme options
4141
html_theme_options = {

src/runloop_api_client/types/scoring_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class ScorerTestBasedScoringFunction(BaseModel):
120120

121121
class ScoringFunction(BaseModel):
122122
name: str
123-
"""Name of scoring function. Names must only contain [a-zA-Z0-9_-]."""
123+
"""Name of scoring function. Names must only contain ``[a-zA-Z0-9_-]``."""
124124

125125
scorer: Scorer
126126
"""The scoring function to use for evaluating this scenario.

src/runloop_api_client/types/scoring_function_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class ScorerTestBasedScoringFunction(TypedDict, total=False):
116116

117117
class ScoringFunctionParam(TypedDict, total=False):
118118
name: Required[str]
119-
"""Name of scoring function. Names must only contain [a-zA-Z0-9_-]."""
119+
"""Name of scoring function. Names must only contain ``[a-zA-Z0-9_-]``."""
120120

121121
scorer: Required[Scorer]
122122
"""The scoring function to use for evaluating this scenario.

0 commit comments

Comments
 (0)