mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 05:26:47 +00:00
Use literal string interpolation in integrations R-S (f-strings) (#26392)
This commit is contained in:
committed by
Pascal Vizeli
parent
7203027cbf
commit
445c741b30
@@ -74,7 +74,7 @@ class SwisscomDeviceScanner(DeviceScanner):
|
||||
|
||||
def get_swisscom_data(self):
|
||||
"""Retrieve data from Swisscom and return parsed result."""
|
||||
url = "http://{}/ws".format(self.host)
|
||||
url = f"http://{self.host}/ws"
|
||||
headers = {CONTENT_TYPE: "application/x-sah-ws-4-call+json"}
|
||||
data = """
|
||||
{"service":"Devices", "method":"get",
|
||||
|
||||
Reference in New Issue
Block a user