Skip to content

Commit

Permalink
Changed fixed length array to dynamic length
Browse files Browse the repository at this point in the history
  • Loading branch information
ulyssear committed Oct 28, 2023
1 parent 39cf4c6 commit d189ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def concepts(request):
category_entry = {
"key": category_key,
"concepts": concepts_list,
"is_incomplete": [False, False]
"is_incomplete": [False for _ in languages],
}
for i in range(len(languages)):
for concept in concepts_list:
Expand Down

0 comments on commit d189ee2

Please sign in to comment.