Skip to content

Commit 5170faf

Browse files
committedSep 19, 2024
removed comments and logging
1 parent 3179b95 commit 5170faf

File tree

1 file changed

+0
-46
lines changed

1 file changed

+0
-46
lines changed
 

‎homeassistant/components/tuya/light.py

-46
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from __future__ import annotations
44

5-
import logging #at the top of the file
6-
75
from dataclasses import dataclass, field
86
import json
97
from typing import Any, cast
@@ -30,7 +28,6 @@
3028
from .entity import IntegerTypeData, TuyaEntity
3129
from .util import remap_value
3230

33-
LOGGER = logging.getLogger(__package__) #at the top of the file after all the imports
3431

3532
@dataclass
3633
class ColorTypeData:
@@ -479,7 +476,6 @@ def __init__(
479476
self._color_mode_dpcode = self.find_dpcode(
480477
description.color_mode, prefer_function=True
481478
)
482-
LOGGER.warning("Tuya light.py.__init__ \"{}\" _color_mode_dpcode {}".format(getattr(self.device, "name"), str(self._color_mode_dpcode)))
483479

484480
if int_type := self.find_dpcode(
485481
description.brightness, dptype=DPType.INTEGER, prefer_function=True
@@ -502,11 +498,7 @@ def __init__(
502498
elif workmode_type := self.find_dpcode( # If entity does not have color_temp, check if it has work_mode "white"
503499
description.color_mode, dptype=DPType.ENUM, prefer_function=True
504500
):
505-
LOGGER.warning("Tuya light.py.__init__ \"{}\" workmode_type {}".format(getattr(self.device, "name"), str(workmode_type.range)))
506-
LOGGER.warning("Tuya light.py.__init__ \"{}\" WorkMode.WHITE.value {}".format(getattr(self.device, "name"), WorkMode.WHITE.value))
507-
LOGGER.warning("Tuya light.py.__init__ \"{}\" WorkMode.WHITE.value in workmode_type.range {}".format(getattr(self.device, "name"), str(WorkMode.WHITE.value in workmode_type.range)))
508501
if WorkMode.WHITE.value in workmode_type.range:
509-
LOGGER.warning("Tuya light.py.__init__ \"{}\" light does not have color_temp, but does have work_mode 'white'. Adding ColorMode.WHITE".format(getattr(self.device, "name")))
510502
color_modes.add(ColorMode.WHITE)
511503
self._white_color_mode = ColorMode.WHITE
512504

@@ -538,13 +530,8 @@ def __init__(
538530
):
539531
self._color_data_type = DEFAULT_COLOR_TYPE_DATA_V2
540532

541-
LOGGER.warning("Tuya light.py.__init__ \"{}\" color_modes before filter: {}".format(getattr(self.device, "name"), str([c.name for c in color_modes])))
542533
self._attr_supported_color_modes = filter_supported_color_modes(color_modes)
543-
544-
LOGGER.warning("Tuya light.py.__init__ \"{}\" color_modes after filter: {}".format(getattr(self.device, "name"), str([c.name for c in self._attr_supported_color_modes])))
545534
if len(self._attr_supported_color_modes) == 1:
546-
547-
LOGGER.warning("Tuya light.py.__init__ \"{}\" color_modes fixed color: {}".format(getattr(self.device, "name"), str([c.name for c in self._attr_supported_color_modes])))
548535
# If the light supports only a single color mode, set it now
549536
self._fixed_color_mode = next(iter(self._attr_supported_color_modes))
550537

@@ -555,41 +542,8 @@ def is_on(self) -> bool:
555542

556543
def turn_on(self, **kwargs: Any) -> None:
557544
"""Turn on or control the light."""
558-
LOGGER.warning("Tuya light.py.turn_on kwargs: " + json.dumps(kwargs))
559545
commands = [{"code": self.entity_description.key, "value": True}]
560546

561-
# if self._color_temp and ATTR_COLOR_TEMP in kwargs:
562-
# if self._color_mode_dpcode:
563-
# commands += [
564-
# {
565-
# "code": self._color_mode_dpcode,
566-
# "value": WorkMode.WHITE,
567-
# },
568-
# ]
569-
570-
# commands += [
571-
# {
572-
# "code": self._color_temp.dpcode,
573-
# "value": round(
574-
# self._color_temp.remap_value_from(
575-
# kwargs[ATTR_COLOR_TEMP],
576-
# self.min_mireds,
577-
# self.max_mireds,
578-
# reverse=True,
579-
# )
580-
# ),
581-
# },
582-
# ]
583-
584-
# if ATTR_WHITE in kwargs: #set work mode to white if kwargs contains white
585-
# if self._color_mode_dpcode:
586-
# commands += [
587-
# {
588-
# "code": self._color_mode_dpcode,
589-
# "value": WorkMode.WHITE,
590-
# },
591-
# ]
592-
593547
if ATTR_WHITE in kwargs or ATTR_COLOR_TEMP in kwargs:
594548
if self._color_mode_dpcode:
595549
commands += [

0 commit comments

Comments
 (0)