Skip to content

Commit ebc75ef

Browse files
committed
fix: 🐛 fix Python 3.8 typing compatibility
1 parent 2de0d63 commit ebc75ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

biothings/hub/dataload/dumper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ class HTTPDumper(BaseDumper):
874874
"""
875875

876876
VERIFY_CERT: bool = True
877-
IGNORE_HTTP_CODE: list[str] = [] # list of HTTP code to ignore in case on non-200 response
877+
IGNORE_HTTP_CODE: List[str] = [] # list of HTTP code to ignore in case on non-200 response
878878
RESOLVE_FILENAME: bool = False # global trigger to get filenames from headers
879879

880880
def prepare_client(self) -> None:

0 commit comments

Comments
 (0)