Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions customerio/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 | {
Expand Down Expand Up @@ -152,7 +152,7 @@ def __init__(
queue_draft=None,
message_data=None,
attachments=None,
disable_css_preproceessing=None,
disable_css_preprocessing=None,
Comment thread
hownowstephen marked this conversation as resolved.
send_at=None,
language=None,
):
Expand All @@ -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

Expand Down