From 16272f3e970399261902eacf35c96822f4ba594a Mon Sep 17 00:00:00 2001 From: Andrew Schweitzer Date: Tue, 23 Apr 2024 18:36:31 -0400 Subject: [PATCH] Fix HubitatGt serialization --- pyproject.toml | 2 +- src/gwproto/types/hubitat_gt.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 292b662..d4cb1a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gridworks-protocol" -version = "0.7.4" +version = "0.7.5" description = "Gridworks Protocol" authors = ["Jessica Millar "] license = "MIT" diff --git a/src/gwproto/types/hubitat_gt.py b/src/gwproto/types/hubitat_gt.py index 31cad34..638796b 100644 --- a/src/gwproto/types/hubitat_gt.py +++ b/src/gwproto/types/hubitat_gt.py @@ -20,7 +20,6 @@ class HubitatGt(BaseModel): class Config: extra = Extra.allow - alias_generator = snake_to_camel allow_population_by_field_name = True _is_mac_address = predicate_validator("MacAddress", has_mac_address_format)