From 27326fdaa98a29076f71c611265af8f9aea49e25 Mon Sep 17 00:00:00 2001 From: sharevb Date: Wed, 25 Oct 2023 13:53:55 +0200 Subject: [PATCH] Fix typing --- transferwee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transferwee.py b/transferwee.py index 3e21eee..627c163 100755 --- a/transferwee.py +++ b/transferwee.py @@ -355,7 +355,7 @@ def _md5(file: str) -> str: return h.hexdigest() -def _storm_prepare_item(file: str) -> Dict[str, List[Union[int, str]]]: +def _storm_prepare_item(file: str) -> List[Dict[str, Any]]: """Given a file, prepare the block for blocks dictionary. Return a dictionary with "content_length" and "content_md5_hex" keys.