Skip to content

Commit 73757b3

Browse files
committed
PEP8
1 parent 5727173 commit 73757b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webexteamssdk/models/cards/adaptive_card_component.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import json
2626
import enum
2727

28+
2829
class AdaptiveCardComponent:
2930
"""Base class for all Adaptive Card components.
3031
@@ -65,7 +66,7 @@ def to_dict(self):
6566
if property_value is not None:
6667
if isinstance(property_value, enum.Enum):
6768
property_value = str(property_value)
68-
69+
6970
serialized_data[property_name] = property_value
7071

7172
# Recursively serialize sub-components

0 commit comments

Comments
 (0)