File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
custom_components/adaptive_cover Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ def outside_high(self) -> bool:
306306 def is_summer (self ) -> bool :
307307 """Check if temperature is over threshold."""
308308 if self .temp_high is not None and self .get_current_temperature is not None :
309- return self .get_current_temperature > self .temp_high and self .outdoor_high
309+ return self .get_current_temperature > self .temp_high and self .outside_high
310310 return False
311311
312312 @property
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ classifiers = [
55 " Framework :: AsyncIO" ,
66 " Intended Audience :: Developers" ,
77 " Natural Language :: English" ,
8- " Programming Language :: Python :: 3.11 " ,
8+ " Programming Language :: Python :: 3.12 " ,
99 " Programming Language :: Python :: 3" ,
1010]
1111description = " Adaptive Cover"
You can’t perform that action at this time.
0 commit comments