From 3debb7cdf3b22932f33ef9e707b1c28214822b37 Mon Sep 17 00:00:00 2001 From: Brendon Go Date: Tue, 28 Apr 2020 17:25:32 -0700 Subject: [PATCH] Fix typo in arest sensor (#34833) --- homeassistant/components/arest/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/arest/sensor.py b/homeassistant/components/arest/sensor.py index 638c0e2557a..7e50b1df8ff 100644 --- a/homeassistant/components/arest/sensor.py +++ b/homeassistant/components/arest/sensor.py @@ -205,7 +205,7 @@ class ArestData: try: if str(self._pin[0]) == "A": response = requests.get( - f"{self._resource,}/analog/{self._pin[1:]}", timeout=10 + f"{self._resource}/analog/{self._pin[1:]}", timeout=10 ) self.data = {"value": response.json()["return_value"]} except TypeError: