From cc264f415e746173aff8cbb182b8ddc81ddebb8d Mon Sep 17 00:00:00 2001
From: Philip Rosenberg-Watt
Date: Thu, 31 May 2018 11:32:31 -0600
Subject: [PATCH] Fix PEP-8 issues
---
homeassistant/components/climate/__init__.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/homeassistant/components/climate/__init__.py b/homeassistant/components/climate/__init__.py
index 7f5ef4c4e80..ebe7cbbf2c1 100644
--- a/homeassistant/components/climate/__init__.py
+++ b/homeassistant/components/climate/__init__.py
@@ -784,12 +784,14 @@ class ClimateDevice(Entity):
@property
def min_temp(self):
"""Return the minimum temperature."""
- return convert_temperature(DEFAULT_MIN_TEMP, TEMP_CELSIUS, self.temperature_unit)
+ return convert_temperature(DEFAULT_MIN_TEMP, TEMP_CELSIUS,
+ self.temperature_unit)
@property
def max_temp(self):
"""Return the maximum temperature."""
- return convert_temperature(DEFAULT_MAX_TEMP, TEMP_CELSIUS, self.temperature_unit)
+ return convert_temperature(DEFAULT_MAX_TEMP, TEMP_CELSIUS,
+ self.temperature_unit)
@property
def min_humidity(self):