Skip to content

Commit 172dc40

Browse files
author
koval
committed
Fix typehint.
1 parent 204b135 commit 172dc40

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

huntflow_api_client/entities/applicant_reponse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict
1+
from typing import Any, Dict, Optional
22

33
from huntflow_api_client.entities.base import BaseEntity, ListEntityMixin
44
from huntflow_api_client.models.response.applicant_response import ApplicantResponsesListResponse
@@ -10,7 +10,7 @@ async def list(
1010
account_id: int,
1111
applicant_id: int,
1212
count: int = 30,
13-
next_page_cursor: str | None = None,
13+
next_page_cursor: Optional[str] = None,
1414
) -> ApplicantResponsesListResponse:
1515
"""
1616
API method reference:

0 commit comments

Comments
 (0)