Skip to content

Commit

Permalink
fix: missing graphql client init for internal methods (#1534)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreLeveau authored Oct 10, 2023
1 parent 8563d0d commit 405f2cc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/kili/presentation/client/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ def __init__(self, kili_api_gateway: KiliAPIGateway) -> None:
"""
super().__init__()
self.kili_api_gateway = kili_api_gateway
self.http_client = kili_api_gateway.http_client
self.graphql_client = kili_api_gateway.graphql_client

@typechecked
def reset_password(self, email: str):
Expand Down

0 comments on commit 405f2cc

Please sign in to comment.