[91] fix unpack error

This commit is contained in:
meisnate12 2022-10-05 13:27:24 -04:00
parent d43030f47b
commit f6418aff7d
3 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
1.17.3-develop90
1.17.3-develop91

View file

@ -20,7 +20,7 @@ libraries:
| `BAFTA Best Films` | `best` | Collection of British Academy of Film Best Film Award Winners |
| `BAFTA <<year>>` | `<<year>>` | Collection of British Academy of Film Award Winners for the given year. |
## Example Collections
### Examples
![](../images/bafta.png)

View file

@ -153,7 +153,7 @@ class DataFile:
def add_translation(yaml_path, yaml_key, data=None):
yaml_content = YAML(input_data=data, path=yaml_path if data is None else None, check_empty=True)
if "variables" in yaml_content.data and yaml_content.data["variables"]:
for var_key, var_value in yaml_content.data["variables"]:
for var_key, var_value in yaml_content.data["variables"].items():
if lib_type in var_value:
if var_key not in key_names:
key_names[var_key] = {}