From 18debd2016ad63ca11c8ff876481959b01e366d7 Mon Sep 17 00:00:00 2001 From: phlax Date: Fri, 19 Apr 2024 09:17:20 +0100 Subject: [PATCH] `envoy.docs.sphinx_runner`: Workaround broken sphinx typing (#2039) Signed-off-by: Ryan Northey --- .../envoy/docs/sphinx_runner/ext/validating_code_block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envoy.docs.sphinx_runner/envoy/docs/sphinx_runner/ext/validating_code_block.py b/envoy.docs.sphinx_runner/envoy/docs/sphinx_runner/ext/validating_code_block.py index 2944ce436..cc8b69c43 100644 --- a/envoy.docs.sphinx_runner/envoy/docs/sphinx_runner/ext/validating_code_block.py +++ b/envoy.docs.sphinx_runner/envoy/docs/sphinx_runner/ext/validating_code_block.py @@ -26,7 +26,7 @@ class ValidatingCodeBlock(CodeBlock): required_arguments = CodeBlock.required_arguments optional_arguments = CodeBlock.optional_arguments final_argument_whitespace = CodeBlock.final_argument_whitespace - option_spec = {"type-name": directives.unchanged} + option_spec = {"type-name": directives.unchanged} # type:ignore option_spec.update(CodeBlock.option_spec) @cached_property