You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, I'm doing with self.session as s in a lot of places, which isn't pep8 compliant -- we're not acquiring and then releasing a resource. It should just be a self.session.get wherever I use it from once -- maybe even just a normal request.get.
Maybe also do a .close on some mythical .logout() method?
The text was updated successfully, but these errors were encountered:
Currently, I'm doing
with self.session as s
in a lot of places, which isn't pep8 compliant -- we're not acquiring and then releasing a resource. It should just be aself.session.get
wherever I use it from once -- maybe even just a normal request.get.Maybe also do a .close on some mythical .logout() method?
The text was updated successfully, but these errors were encountered: