🔇 remove print

This commit is contained in:
StarHeartHunt 2021-07-06 21:15:02 +08:00
parent e3c3e370cb
commit b9befc8350
2 changed files with 0 additions and 7 deletions

View File

@ -164,8 +164,6 @@ class Bot(BaseBot):
处理事件并转换为 `Event <#class-event>`_
"""
data = json.loads(message)
print("handle_event start")
print(data)
if data.get("type") == "url_verification":
return
@ -233,16 +231,12 @@ class Bot(BaseBot):
"Authorization"] = "Bearer " + self.feishu_config.tenant_access_token
try:
print("call_api request start")
print(data)
async with httpx.AsyncClient(headers=headers) as client:
response = await client.post(
self.api_root + api,
json=data["body"],
params=data["query"],
timeout=self.config.api_timeout)
print("remote server returned.")
print(response.json())
if 200 <= response.status_code < 300:
result = response.json()
return _handle_api_result(result)

View File

@ -199,7 +199,6 @@ class MessageDeserializer:
data: Dict[str, Any]
def deserialize(self) -> Message:
print(self.type, self.data)
if self.type == "post":
return Message(self._parse_rich_text(self.data))
else: