Skip to content

Commit c47e098

Browse files
committed
chore: test
1 parent 483ab43 commit c47e098

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

python/looker_sdk/rtl/api_settings.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,18 @@
3232
from looker_sdk.rtl import transport
3333

3434
if sys.version_info >= (3, 8):
35-
from typing import Protocol
35+
from typing import Protocol, TypedDict
3636
else:
37-
from typing_extensions import Protocol
37+
from typing_extensions import Protocol, TypedDict
38+
39+
40+
from typing_extensions import Required
41+
42+
43+
class SettingsConfig(TypedDict, total=False):
44+
client_id: Required[str]
45+
client_secret: Required[str]
46+
verify_ssl: str
3847

3948

4049
class PApiSettings(transport.PTransportSettings, Protocol):

0 commit comments

Comments
 (0)