Skip to content

Commit bb8fd24

Browse files
committed
fix: Imported correct instance of typing.List.
1 parent 1a1a348 commit bb8fd24

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

firebase_admin/credentials.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
import json
1818
import pathlib
1919

20-
from typing import Type
20+
from typing import (
21+
Type,
22+
List
23+
)
2124

2225
import google.auth # type: ignore
2326
from google.auth import default
@@ -32,7 +35,7 @@
3235

3336
_request: requests.Request = requests.Request()
3437
_request_async: aiohttp_requests.Request = aiohttp_requests.Request()
35-
_scopes: list[str] = [
38+
_scopes: List[str] = [
3639
'https://www.googleapis.com/auth/cloud-platform',
3740
'https://www.googleapis.com/auth/datastore',
3841
'https://www.googleapis.com/auth/devstorage.read_write',

0 commit comments

Comments
 (0)