Skip to content

Commit

Permalink
#338 fixed bug (missed parameter in nested class)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Jun 17, 2022
1 parent 76adaef commit e92f9f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arekit/common/news/parsed/providers/entity_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class EntityServiceProvider(BaseParsedNewsServiceProvider):

NAME = "entity-service-provider"

def __init__(self):
super(EntityServiceProvider, self).__init__()
def __init__(self, entity_index_func):
super(EntityServiceProvider, self).__init__(entity_index_func=entity_index_func)
# Initialize API.
self.__iter_raw_terms_func = None
# Initialize entity positions.
Expand Down

0 comments on commit e92f9f4

Please sign in to comment.