Use literal string interpolation in integrations R-S (f-strings) (#26392)
This commit is contained in:
committed by
Pascal Vizeli
parent
7203027cbf
commit
445c741b30
@@ -104,7 +104,7 @@ def _update_route53(
|
||||
{
|
||||
"Action": "UPSERT",
|
||||
"ResourceRecordSet": {
|
||||
"Name": "{}.{}".format(record, domain),
|
||||
"Name": f"{record}.{domain}",
|
||||
"Type": "A",
|
||||
"TTL": ttl,
|
||||
"ResourceRecords": [{"Value": ipaddress}],
|
||||
|
||||
Reference in New Issue
Block a user