Skip to content

Commit 4e92233

Browse files
authored
Remove yamale check to validate that example service is contained in services list because this is done better in the code validator. (#157)
1 parent 999aa52 commit 4e92233

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aws_doc_sdk_examples_tools/config/example_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ example:
1212
guide_topic: include('guide_topic', required=False)
1313
languages: map(include('language'))
1414
service_main: service_name(required=False)
15-
services: map(key=service_name())
15+
services: map(key=str())
1616

1717
guide_topic:
1818
title: str(upper_start=True, no_end_punc=True)

aws_doc_sdk_examples_tools/config/example_strict_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ example:
1212
guide_topic: include('guide_topic', required=False)
1313
languages: map(include('language'))
1414
service_main: service_name(required=False)
15-
services: map(map(key=str(), required=False), key=service_name())
15+
services: map(map(key=str(), required=False), key=str())
1616

1717
guide_topic:
1818
title: str(upper_start=True, no_end_punc=True)

0 commit comments

Comments
 (0)