rougeth / bottery

[DEVELOPMENT-HALTED] :battery: A bot framework with batteries included
MIT License
341 stars 51 forks source link

Warnings: coroutine 'ClientSession.close' was never awaited #175

Open nicoddemus opened 6 years ago

nicoddemus commented 6 years ago

I've seen this warnings in bottery's CI:

c:\projects\bottery\.tox\py35\lib\site-packages\bottery\bottery.py:107: RuntimeWarning: coroutine 'ClientSession.close' was never awaited
  self.session.close()
c:\projects\bottery\.tox\py35\lib\site-packages\bottery\bottery.py:107: RuntimeWarning: coroutine 'ClientSession.close' was never awaited
  self.session.close()

Seems like that line should be await self.session.close(), correct?