Skip to content

Commit 70eae9d

Browse files
committed
fix f-string without any placeholders
Signed-off-by: Jorge Tapicha <[email protected]>
1 parent 9b460dd commit 70eae9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chaosaws/msk/actions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def reboot_msk_broker(
3030
BrokerIds=broker_ids
3131
)
3232
except client.exceptions.NotFoundException:
33-
raise FailedActivity(f"The specified cluster was not found" )
33+
raise FailedActivity("The specified cluster was not found" )
3434

3535

3636
def delete_cluster(
@@ -46,4 +46,4 @@ def delete_cluster(
4646
try:
4747
return client.delete_cluster(ClusterArn=cluster_arn)
4848
except client.exceptions.NotFoundException:
49-
raise FailedActivity(f"The specified cluster was not found")
49+
raise FailedActivity("The specified cluster was not found")

0 commit comments

Comments
 (0)