Skip to content

Commit

Permalink
tiem
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt committed Aug 8, 2023
1 parent b1f1381 commit 3a4043a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions webapp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,8 @@ def _kw(input):
sleep_rgb_or_color_temp=input.sleep_rgb_or_color_temp(),
sleep_color_temp=input.sleep_color_temp(),
sleep_rgb_color=[int(x) for x in input.sleep_rgb_color().split(",")],
# sunrise_time=float_to_time(input.sunrise_time()),
# sunset_time=float_to_time(input.sunset_time()),
sunrise_time=None,
sunset_time=None,
sunrise_time=float_to_time(input.sunrise_time()),
sunset_time=float_to_time(input.sunset_time()),
brightness_mode_time_dark=dt.timedelta(
seconds=input.brightness_mode_time_dark()
),
Expand Down

0 comments on commit 3a4043a

Please sign in to comment.