Skip to content

Commit d69a4ed

Browse files
committed
added comments to httputils.py
1 parent 0928331 commit d69a4ed

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

app/utils/httputils.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""app.utils.httputils.py"""
2-
import logging
3-
4-
from aiohttp import ClientSession
2+
import logging from aiohttp import ClientSession
53

64

75
class Session:
@@ -10,11 +8,11 @@ class Session:
108
__LOGGER = logging.getLogger(__name__)
119

1210
def getClientSession(self):
13-
"""returns __CLIENT_SESSION"""
11+
"""returns value in __CLIENT_SESSION"""
1412
return self.__CLIENT_SESSION
1513

1614
def getLogger(self):
17-
"""returns __LOGGER"""
15+
"""returns value in __LOGGER"""
1816
return self.__LOGGER
1917

2018
async def setup_client_session(self):

0 commit comments

Comments
 (0)