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 d85ec39 commit 9b1e9b3Copy full SHA for 9b1e9b3
aws_doc_sdk_examples_tools/doc_gen.py
@@ -330,9 +330,12 @@ def fill_missing_fields(self):
330
# TODO Log and find which tributaries this effects, as it was supposed to be caught by validations.
331
continue
332
action = (
333
- next((k for k in example.services[service_id]), None)
+ next((k for k in example.services.get(service_id, [])), None)
334
or example.id.split("_", 1)[1]
335
)
336
+ if action is None:
337
+ # TODO Log and find which tributaries this effects, as it was supposed to be caught by validations.
338
+ continue
339
example.fill_display_fields(
340
self.categories, self.services[service_id].short, action
341
0 commit comments