Skip to content

Commit

Permalink
#332 Fixed incorrect pipeline parameters passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Jun 20, 2022
1 parent 9ff29ae commit cc44339
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arekit/common/opinions/annot/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def _annot_collection_core(self, parsed_news, data_type):
# region public methods

def annotate_collection(self, data_type, parsed_news):
return parsed_news.RelatedDocID, \
self._annot_collection_core(parsed_news=parsed_news, data_type=data_type)
return self._annot_collection_core(parsed_news=parsed_news, data_type=data_type)

# endregion

0 comments on commit cc44339

Please sign in to comment.