Skip to content

Commit

Permalink
fix(maiia): Fix get reasons pass wrong arg
Browse files Browse the repository at this point in the history
  • Loading branch information
NamPNQ committed Oct 25, 2022
1 parent f63aae0 commit 2a828c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper/maiia/maiia.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def _fetch(self, request: ScraperRequest, creneau_q=DummyQueue()) -> Optional[st
return None
center_id = url_query["centerid"][0]

reasons = get_reasons(center_id, self._client, request=request)
reasons = get_reasons(center_id, client=self._client, request=request)
if not reasons:
return None
self.lieu = Lieu(
Expand Down

0 comments on commit 2a828c8

Please sign in to comment.