fix: Template and non-template fields example

This commit is contained in:
kr3ator 2022-04-12 14:50:03 +02:00
parent 57da852af6
commit d482e623df
2 changed files with 6 additions and 6 deletions

View file

@ -36,14 +36,13 @@ def expand_templates(params: List[dict], device_type: DeviceType) -> List[dict]:
if field in param:
has_plain_fields = True
expanded.append(param)
elif template_value:
expanded_fields[field] = list(expand_alphanumeric_pattern(template_value))
if expanded_fields and has_plain_fields:
raise ValueError(f"Mix of plain and template keys provided for {templateable_fields}")
if not expanded_fields:
elif not expanded_fields:
expanded.append(param)
continue
elements = list(expanded_fields.values())