We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0928331 commit d69a4edCopy full SHA for d69a4ed
app/utils/httputils.py
@@ -1,7 +1,5 @@
1
"""app.utils.httputils.py"""
2
-import logging
3
-
4
-from aiohttp import ClientSession
+import logging from aiohttp import ClientSession
5
6
7
class Session:
@@ -10,11 +8,11 @@ class Session:
10
8
__LOGGER = logging.getLogger(__name__)
11
9
12
def getClientSession(self):
13
- """returns __CLIENT_SESSION"""
+ """returns value in __CLIENT_SESSION"""
14
return self.__CLIENT_SESSION
15
16
def getLogger(self):
17
- """returns __LOGGER"""
+ """returns value in __LOGGER"""
18
return self.__LOGGER
19
20
async def setup_client_session(self):
0 commit comments