Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit c5e5aba

Browse files
fix: import Union, Optional from typing instead of typing-extensions
1 parent b43434f commit c5e5aba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

storage3/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
from datetime import datetime
33

44
import dateutil.parser
5-
from typing_extensions import Literal, TypedDict, Union, Optional
5+
from typing_extensions import Literal, TypedDict
6+
from typing import Union, Optional
67

78
RequestMethod = Literal["GET", "POST", "DELETE", "PUT", "HEAD"]
89

0 commit comments

Comments
 (0)