diff --git a/verify/src/vonage_verify/responses.py b/verify/src/vonage_verify/responses.py index 6aa16ef0..64383e53 100644 --- a/verify/src/vonage_verify/responses.py +++ b/verify/src/vonage_verify/responses.py @@ -1,4 +1,4 @@ -from typing import List, Literal, Optional +from typing import List, Optional from pydantic import BaseModel diff --git a/verify/src/vonage_verify/verify.py b/verify/src/vonage_verify/verify.py index 40da4443..ad825bf6 100644 --- a/verify/src/vonage_verify/verify.py +++ b/verify/src/vonage_verify/verify.py @@ -1,13 +1,12 @@ -import re -from typing import List, Optional, Union -from pydantic import Field, validate_call +from typing import List, Union + +from pydantic import validate_call from vonage_http_client.http_client import HttpClient from .errors import VerifyError from .requests import BaseVerifyRequest, Psd2Request, VerifyRequest from .responses import ( CheckCodeResponse, - NetworkUnblockStatus, StartVerificationResponse, VerifyControlStatus, VerifyStatus,