Remove unnecessary format string

This commit is contained in:
up-n-atom
2023-08-17 01:24:27 -04:00
committed by GitHub
parent 21ed8812fb
commit 3edf358191
+1 -1
View File
@@ -110,7 +110,7 @@ async def set_dns_servers(client: SagemcomClient, dns_servers: tuple[IPv4Address
break
else:
try:
await client.set_value_by_xpath(f"Device/DNS/Relay/Enable", True)
await client.set_value_by_xpath('Device/DNS/Relay/Enable', True)
except Exception as e:
click.echo(e, err=True)