Skip to content

Commit 68e7188

Browse files
committed
fix 2 error api
1 parent 14c4563 commit 68e7188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wechatrobot/Api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ def SendImage(self , **params) -> Dict:
3030
def SendFile(self , **params) -> Dict:
3131
return self.post(WECHAT_MSG_SEND_FILE , SendFileBody(**params))
3232

33-
def SendArticle(**params) -> Dict:
33+
def SendArticle(self , **params) -> Dict:
3434
return self.post(WECHAT_MSG_SEND_ARTICLE , SendArticleBody(**params))
3535

36-
def SendApp(**params) -> Dict:
36+
def SendApp(self , **params) -> Dict:
3737
return self.post(WECHAT_MSG_SEND_APP , SendAppBody(**params))
3838

3939
def StartMsgHook(self, **params) -> Dict:

0 commit comments

Comments
 (0)