Skip to content

Commit

Permalink
using python 3.7 type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed May 4, 2023
1 parent 69b88fc commit 730f1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vonage/proactive_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def delete_item(self, list_id: str, item_id: str):
auth_type=self._auth_type,
)

def download_list_items(self, list_id: str, file_path) -> list[dict]:
def download_list_items(self, list_id: str, file_path) -> List[dict]:
uri = f'https://{self._client.proactive_connect_host()}/v0.1/bulk/lists/{list_id}/items/download'
logger.debug(f"GET request sent to {repr(uri)}")
response = requests.get(
Expand Down

0 comments on commit 730f1dd

Please sign in to comment.