Skip to content

Commit f8f7c57

Browse files
committed
Add output typing
1 parent 65cfc79 commit f8f7c57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydantic_ssm_settings/source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def client(self) -> "SSMClient":
2727
return boto3.client("ssm", config=self.client_config)
2828

2929
@property
30-
def client_config(self):
30+
def client_config(self) -> Config:
3131
timeout = float(os.environ.get("SSM_TIMEOUT", 0.5))
3232
return Config(connect_timeout=timeout, read_timeout=timeout)
3333

0 commit comments

Comments
 (0)