Skip to content
Snippets Groups Projects
Commit f505d178 authored by Carlos Vega's avatar Carlos Vega
Browse files

changed return type of get_coocurrences to list of co-occurrences

parent e668154d
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ class TextMiningService(metaclass=ABCMeta):
pass
@abstractmethod
def get_co_occurrences(self, entity: str) -> List[str]:
def get_co_occurrences(self, entity: str) -> List[CoOccurrence]:
"""
Co-occurrences at publication level.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment