Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit 6ba89a3

Browse files
committed
type 검사할 때 "cta"도 허용하도록 추가
1 parent 34f1a84 commit 6ba89a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/coolsms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def check_send_data(self, params):
258258
params['to'] = ','.join(to)
259259

260260
# message type check
261-
if key == "type" and val.lower() not in ['sms', 'lms', 'mms', 'ata']:
261+
if key == "type" and val.lower() not in ['sms', 'lms', 'mms', 'ata', 'cta']:
262262
raise CoolsmsSDKException("message type is not supported", 201)
263263

264264
return params

0 commit comments

Comments
 (0)