diff --git a/eligibility_api/api.py b/eligibility_api/api.py index 7336d6d..6713d8c 100644 --- a/eligibility_api/api.py +++ b/eligibility_api/api.py @@ -139,11 +139,10 @@ def __init__( class Client: """Eligibility Verification API HTTP client.""" - def __init__(self, agency, issuer): + def __init__(self, agency, verifier, issuer): logger.debug(f"Initialize client for agency: {agency.short_name}") self.issuer = issuer - verifier = agency.eligibility_verifier # get the eligibility type names self.types = list(map(lambda t: t.name, agency.types_to_verify())) self.agency_id = agency.agency_id