Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 committed Aug 11, 2024
1 parent 6ec1982 commit 0b876e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vfb_connect/neo/query_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def get_TermInfo(self, short_forms: iter, summary=True, cache=True):
"""
if cache:
result = self._get_Cached_TermInfo(short_forms)
if result.length == short_forms.length:
if len(result) == len(short_forms):
if summary:
return self._populate_summary(result)
else:
Expand Down

0 comments on commit 0b876e2

Please sign in to comment.