Skip to content

Commit f3a7f70

Browse files
committed
fix type for 3.9
1 parent 54ea4f3 commit f3a7f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inventree/oAuthClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
class OAuthClient:
13-
def __init__(self, server_url: str = "http://localhost:8000", client_id: str ='', scopes: list[str] = None) -> None:
13+
def __init__(self, server_url: str = "http://localhost:8000", client_id: str ='', scopes: list = None) -> None:
1414
self.server_url = server_url
1515
self.client_id = client_id
1616
self.scopes = scopes if scopes is not None else []

0 commit comments

Comments
 (0)