diff --git a/docassemble/EFSPIntegration/efm_client.py b/docassemble/EFSPIntegration/efm_client.py index 3d61928..febfae2 100644 --- a/docassemble/EFSPIntegration/efm_client.py +++ b/docassemble/EFSPIntegration/efm_client.py @@ -219,7 +219,6 @@ def authenticate_user( self, tyler_email: str = None, tyler_password: str = None, - jeffnet_key: str = None, *, jurisdiction: str = None, ) -> ApiResponse: @@ -227,19 +226,15 @@ def authenticate_user( Params: tyler_email (str) tyler_password (str) - jeffnet_key (str) """ temp_efile_config = get_config("efile proxy", {}) if tyler_email is None: tyler_email = temp_efile_config.get("tyler email") if tyler_password is None: tyler_password = temp_efile_config.get("tyler password") - if jeffnet_key is None: - jeffnet_key = temp_efile_config.get("jeffnet api token") resp = super().authenticate_user( tyler_email=tyler_email, tyler_password=tyler_password, - jeffnet_key=jeffnet_key, jurisdiction=jurisdiction, ) if resp.is_ok(): diff --git a/docassemble/EFSPIntegration/py_efsp_client.py b/docassemble/EFSPIntegration/py_efsp_client.py index 963ee8d..0ea1105 100644 --- a/docassemble/EFSPIntegration/py_efsp_client.py +++ b/docassemble/EFSPIntegration/py_efsp_client.py @@ -235,7 +235,6 @@ def authenticate_user( *, tyler_email: Optional[str] = None, tyler_password: Optional[str] = None, - jeffnet_key: Optional[str] = None, jurisdiction: str = None, ) -> ApiResponse: """ @@ -251,8 +250,6 @@ def authenticate_user( ) auth_obj: Dict[str, Union[str, Dict[str, str]]] = {} auth_obj["api_key"] = self.api_key - if jeffnet_key: - auth_obj["jeffnet"] = {"key": jeffnet_key} if tyler_email and tyler_password: auth_obj[f"tyler-{jurisdiction}"] = { "username": tyler_email,