[light] Fix outdated comment on gamma_tables dict

Only the forward table is stored now; reverse gamma is computed
via binary search on the forward table.
This commit is contained in:
J. Nick Koston
2026-02-19 15:04:41 -06:00
parent 08c193d1d8
commit 96f52da647

View File

@@ -72,9 +72,7 @@ DOMAIN = "light"
@dataclass
class LightData:
gamma_tables: dict = field(
default_factory=dict
) # gamma_value -> (fwd_arr, rev_arr)
gamma_tables: dict = field(default_factory=dict) # gamma_value -> fwd_arr
def _get_data() -> LightData: