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 7dbd968 commit 2781b1dCopy full SHA for 2781b1d
aws_doc_sdk_examples_tools/doc_gen.py
@@ -324,8 +324,11 @@ def validate(self):
324
def fill_missing_fields(self):
325
for example in self.examples.values():
326
service_id = example.service_main or next(
327
- k for (k, _) in example.services.items()
+ (k for (k, _) in example.services.items()), None
328
)
329
+ if service_id is None:
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)
334
or example.id.split("_", 1)[1]
0 commit comments