Skip to content

Commit

Permalink
Update cc_tools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
StarkGang authored May 14, 2021
1 parent c0a9aeb commit 1ba3a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cc_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ async def cc_(cc):
"cc": cc
}
async with aiohttp.ClientSession() as session:
async with session.post(url, json=data_) as resp:
async with session.get(url, json=data_) as resp:
response_ = await resp.json()
check_response = f"『 ✮ {response_['msg']} ✮ 』"
time_taken = response_['time_taken']
Expand Down

0 comments on commit 1ba3a79

Please sign in to comment.