Skip to content

Commit

Permalink
Fix the merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Sullivan committed Feb 9, 2024
1 parent b7aa72f commit a9e6c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generators/es_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def component_name_convention(
) -> List[str]:
version: str = ecs_version.replace('+', '-')
names: List[str] = []
for (fieldset_name, fieldset) in candidate_components(ecs_nested).items():
for (fieldset_name, fieldset) in ecs_helpers.remove_top_level_reusable_false(ecs_nested).items():
names.append("{}_{}_{}".format(ecs_component_name_prefix, version, fieldset_name.lower()))
return names

Expand Down

0 comments on commit a9e6c4f

Please sign in to comment.