Skip to content

Commit

Permalink
Update font_parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
moi15moi committed Sep 27, 2024
1 parent d4008e0 commit f470aa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions font_collector/font/font_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ def get_axis_value_table_property(

# Generate family_name an fullname
for item in product(*axis_values_names):
langs: Set[Language] = set()
langs: List[Language] = []
for element in item:
langs.add(element.lang_code)
langs.append(element.lang_code)

family_name_str = " ".join([element.value for i, element in enumerate(item) if family_name_axis_value_index[i]])
fullname_str = " ".join([element.value for i, element in enumerate(item) if fullname_axis_value_index[i]])
Expand Down

0 comments on commit f470aa5

Please sign in to comment.