From 86582ad1ba0acd53baab7d50578a232556d2d110 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 29 May 2020 17:32:14 -0700 Subject: [PATCH] Fix lint on sonarr --- tests/components/sonarr/__init__.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/components/sonarr/__init__.py b/tests/components/sonarr/__init__.py index 49a092c97e7..c7f31c67742 100644 --- a/tests/components/sonarr/__init__.py +++ b/tests/components/sonarr/__init__.py @@ -74,43 +74,43 @@ def mock_connection( aioclient_mock.get( f"{sonarr_url}/system/status", - text=load_fixture(f"sonarr/system-status.json"), + text=load_fixture("sonarr/system-status.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/diskspace", - text=load_fixture(f"sonarr/diskspace.json"), + text=load_fixture("sonarr/diskspace.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/calendar", - text=load_fixture(f"sonarr/calendar.json"), + text=load_fixture("sonarr/calendar.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/command", - text=load_fixture(f"sonarr/command.json"), + text=load_fixture("sonarr/command.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/queue", - text=load_fixture(f"sonarr/queue.json"), + text=load_fixture("sonarr/queue.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/series", - text=load_fixture(f"sonarr/series.json"), + text=load_fixture("sonarr/series.json"), headers={"Content-Type": "application/json"}, ) aioclient_mock.get( f"{sonarr_url}/wanted/missing", - text=load_fixture(f"sonarr/wanted-missing.json"), + text=load_fixture("sonarr/wanted-missing.json"), headers={"Content-Type": "application/json"}, )