Skip to content

Commit

Permalink
Hot fix for #1020 (#1459)
Browse files Browse the repository at this point in the history
* Hot fix
  • Loading branch information
vmonakhov authored Sep 6, 2023
1 parent 3a25c86 commit 5d36c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lingvodoc/schema/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -13747,7 +13747,7 @@ def morph_cognate_statistics(

# Getting text data for each perspective.
to_canon_meaning = collections.defaultdict(dict)
meaning_to_links = collections.defaultdict(dict)
meaning_to_links = {}
result_pool = {}
tiny_dicts = set()
clean_meaning_re = re.compile('[.\dA-Z]+')
Expand Down Expand Up @@ -13828,6 +13828,7 @@ def morph_cognate_statistics(
del affix_query
del meaning_query

meaning_to_links[perspective_id] = {}
result_pool[perspective_id] = {'name': dictionary_name}

for row in data_query:
Expand Down

1 comment on commit 5d36c0d

@vmonakhov
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.