Skip to content

Commit 268e12d

Browse files
troyswansonrubenfonseca
authored andcommitted
Remove unnecessary type ignore comment
1 parent a3b9eb4 commit 268e12d

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

Lines changed: 1 addition & 1 deletion
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)