Current line 73 code
await client.send_message(message.channel, msg)
causes issues as object seems to no longer possess send_message attribute
the fix that works for me atm
await message.channel.send(msg)
As i am not well-versed with python, it may be not efficent solution, but solution nonetheless