diff --git a/customerio/api.py b/customerio/api.py index 7f09727..538bf8a 100644 --- a/customerio/api.py +++ b/customerio/api.py @@ -43,7 +43,7 @@ def _payload_from_fields(source, field_map): "send_to_unsubscribed": "send_to_unsubscribed", "tracked": "tracked", "attachments": "attachments", - "disable_css_preproceessing": "disable_css_preproceessing", + "disable_css_preprocessing": "disable_css_preprocessing", } PUSH_FIELD_MAP = COMMON_MESSAGE_FIELD_MAP | { @@ -152,7 +152,7 @@ def __init__( queue_draft=None, message_data=None, attachments=None, - disable_css_preproceessing=None, + disable_css_preprocessing=None, send_at=None, language=None, ): @@ -175,7 +175,7 @@ def __init__( self.queue_draft = queue_draft self.message_data = message_data self.attachments = attachments - self.disable_css_preproceessing = disable_css_preproceessing + self.disable_css_preprocessing = disable_css_preprocessing self.send_at = send_at self.language = language