@commands.command()
async def lyrics(self,ctx,artist, title):
cs = aiohttp.ClientSession()
res = await cs.get('https://api.lyrics.ovh/v1/{}/{}'.format(artist,title))
data = await res.json()
data = ['lyrics']
await ctx.send(data)
i get this error.idk what i did wrong.its my first time using aiohttp so im getting a little confused.
client_session: <aiohttp.client.ClientSession object at 0x00000218657B6160>
Unclosed connector
connections: ['[(<aiohttp.client_proto.ResponseHandler object at 0x0000021865678A70>, 379071.609)]']
connector: <aiohttp.connector.TCPConnector object at 0x00000218657B6E10>