From 98db0a2d2e27c69e8a766a739088f98976727a75 Mon Sep 17 00:00:00 2001 From: Chris Talkington Date: Fri, 28 Aug 2020 00:24:11 -0500 Subject: [PATCH] fix black on generic_thermostat tests (#39350) --- tests/components/generic_thermostat/test_climate.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/components/generic_thermostat/test_climate.py b/tests/components/generic_thermostat/test_climate.py index 71842cf3b6d..eaf7c8e5651 100644 --- a/tests/components/generic_thermostat/test_climate.py +++ b/tests/components/generic_thermostat/test_climate.py @@ -1275,11 +1275,16 @@ async def test_reload(hass): assert hass.states.get("climate.test") is not None yaml_path = path.join( - _get_fixtures_base_path(), "fixtures", "generic_thermostat/configuration.yaml", + _get_fixtures_base_path(), + "fixtures", + "generic_thermostat/configuration.yaml", ) with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path): await hass.services.async_call( - GENERIC_THERMOSTAT_DOMAIN, SERVICE_RELOAD, {}, blocking=True, + GENERIC_THERMOSTAT_DOMAIN, + SERVICE_RELOAD, + {}, + blocking=True, ) await hass.async_block_till_done()