Skip to content

Commit d8a77ab

Browse files
committed
Remove unnecessary type ignore comment
1 parent b7f3f96 commit d8a77ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/parameters/src/getting_started_single_ssm_parameter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def lambda_handler(event: dict, context: LambdaContext) -> dict:
88
try:
99
# Retrieve a single parameter
10-
endpoint_comments: str = parameters.get_parameter("/lambda-powertools/endpoint_comments") # type: ignore[assignment] # noqa: E501
10+
endpoint_comments = parameters.get_parameter("/lambda-powertools/endpoint_comments")
1111

1212
# the value of this parameter is https://jsonplaceholder.typicode.com/comments/
1313
comments: requests.Response = requests.get(endpoint_comments)

0 commit comments

Comments
 (0)