From 3037156aa6d3c5ac790ce41d63df94ffc78446d9 Mon Sep 17 00:00:00 2001 From: noahhusby <32528627+noahhusby@users.noreply.github.com> Date: Mon, 11 Nov 2024 08:44:33 -0500 Subject: [PATCH] Added none option to brightness enum --- aiostreammagic/models.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/aiostreammagic/models.py b/aiostreammagic/models.py index c98c37d..7f31508 100644 --- a/aiostreammagic/models.py +++ b/aiostreammagic/models.py @@ -53,6 +53,7 @@ class DisplayBrightness(StrEnum): BRIGHT = "bright" DIM = "dim" OFF = "off" + NONE = "none" class ControlBusMode(StrEnum): diff --git a/pyproject.toml b/pyproject.toml index 1c28a2d..cfea8de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiostreammagic" -version = "2.8.4" +version = "2.8.5" description = "An async python package for interfacing with Cambridge Audio / Stream Magic compatible streamers." authors = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"] maintainers = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"]