From 69e342b492fb7b2529548b959cdc9384e95ba10c Mon Sep 17 00:00:00 2001 From: puddly <32534428+puddly@users.noreply.github.com> Date: Mon, 29 Jul 2024 12:06:39 -0400 Subject: [PATCH] Map `EzspStatus.ERROR_INVALID_VALUE` to `sl_Status.INVALID_PARAMETER` (#641) --- bellows/types/named.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bellows/types/named.py b/bellows/types/named.py index a1f6c636..83a8cb84 100644 --- a/bellows/types/named.py +++ b/bellows/types/named.py @@ -1558,6 +1558,7 @@ def from_ember_status( (EzspStatus.ERROR_INVALID_ID, sl_Status.INVALID_PARAMETER), (EzspStatus.ERROR_OUT_OF_MEMORY, sl_Status.NO_MORE_RESOURCE), (EzspStatus.ERROR_INVALID_CALL, sl_Status.INVALID_PARAMETER), + (EzspStatus.ERROR_INVALID_VALUE, sl_Status.INVALID_PARAMETER), # Ember status (EmberStatus.SUCCESS, sl_Status.OK), (EmberStatus.ERR_FATAL, sl_Status.FAIL),