Skip to content

Commit 8d65889

Browse files
Addressing Heitor's feedback
1 parent 08aaff4 commit 8d65889

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws_lambda_powertools/utilities/data_classes/api_gateway_proxy_event.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_context(self) -> Dict[str, Any]:
4040
--------
4141
4242
```python
43-
ctx: dict = ...request_context.authorizer.get_context()
43+
ctx: dict = request_context.authorizer.get_context()
4444
4545
tenant_id = ctx.get("tenant_id")
4646
```
@@ -210,7 +210,7 @@ def get_context(self) -> Dict[str, Any]:
210210
--------
211211
212212
```python
213-
ctx: dict = ...request_context.authorizer.get_context()
213+
ctx: dict = request_context.authorizer.get_context()
214214
215215
tenant_id = ctx.get("tenant_id")
216216
```

0 commit comments

Comments
 (0)