From 98d8be3732054bd7aec3bafb73ed53409aec7703 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 8 Apr 2020 15:26:21 +0200 Subject: [PATCH] Fixed error not being able to get inputs property --- webexteamssdk/models/mixins/attachment_action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webexteamssdk/models/mixins/attachment_action.py b/webexteamssdk/models/mixins/attachment_action.py index 08abb27..ee3aa80 100644 --- a/webexteamssdk/models/mixins/attachment_action.py +++ b/webexteamssdk/models/mixins/attachment_action.py @@ -70,7 +70,7 @@ def messageId(self): @property def inputs(self): """The action's inputs.""" - return self._json_data('inputs') + return self._json_data.get('inputs') @property def created(self):