We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7af0a34 commit cbb5bc6Copy full SHA for cbb5bc6
rst_include/libs/lib_block_options.py
@@ -148,7 +148,7 @@ def get_option_key_from_source_line(source_line: SourceLine) -> str:
148
def log_and_raise_value_error_if_option_not_in_block(option: str, block: Block) -> None:
149
if not is_option_in_block(option, block):
150
s_error = f'Error in File: "{block.source}", option "{option}' \
151
- f'" not found in block starting with Line: {block.l_source_lines[0].line_number}' # noqa: E126 # for python 3.12beta
+ f'" not found in block starting with Line: {block.l_source_lines[0].line_number}' # noqa: E126 E713 # for python 3.12beta
152
lib_log_utils.log_error(s_error)
153
raise ValueError(s_error)
154
0 commit comments