apply line length rules to the doc directory

We've got code here and no reason it shouldn't be included in our sanity
lints.

Change-Id: I0d7d668bc8e2d214799f7f876a795d4af7346105
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein 2024-12-06 08:53:48 -06:00
parent 42d05e9a0d
commit 6bfd84b66b
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View File

@ -272,7 +272,8 @@ class Parameters(Directive):
for field_name in input_dict:
old_field_body = input_dict[field_name]
if old_field_body in yaml_data.keys():
input_dict[field_name] = yaml_data[old_field_body]["description"]
input_dict[field_name] = \
yaml_data[old_field_body]["description"]
# Convert dictionary to bullet list format
params_build_env = self.state.document.settings.env
@ -327,7 +328,8 @@ class Return(Directive):
failure_detail = create_bullet_list(failure_dict, ret_build_env)
ret_table_contents += failure_detail
if len(initial_list) > 0 or len(success_list) > 0 or len(proc_fail_list) > 0:
if (len(initial_list) > 0 or len(success_list) > 0 or
len(proc_fail_list) > 0):
# Create a table to display the final Returns directive output
ret_table = create_table('Returns', ret_table_contents)
return [ret_table]

View File

@ -121,10 +121,12 @@ master_doc = 'index'
# General information about the project.
copyright = 'OpenStack Foundation'
config_generator_config_file = '../../tools/config/ironic-config-generator.conf'
config_generator_config_file = \
'../../tools/config/ironic-config-generator.conf'
sample_config_basename = '_static/ironic'
policy_generator_config_file = '../../tools/policy/ironic-policy-generator.conf'
policy_generator_config_file = \
'../../tools/policy/ironic-policy-generator.conf'
sample_policy_basename = '_static/ironic'
# A list of ignored prefixes for module index sorting.