|
@@ -114,7 +114,7 @@ class SpaceInfoService(Service):
|
|
|
|
|
|
return custom_target_df
|
|
|
|
|
|
- async def get_current_temperature_target(self) -> object:
|
|
|
+ async def get_current_temperature_target(self) -> float:
|
|
|
current_targets = await self.get_custom_target()
|
|
|
if len(current_targets) > 0:
|
|
|
temp = arrow.get(self._now_time, TIME_FMT).shift(minutes=15).timestamp // (15 * 60) * (15 * 60)
|