junepark678 / GIRRewrite

global statement detected PYL-W0603
Anti-pattern
Major
a year agoa year old
Using the global statement
 37
 38        """
 39
 40        global BOT_GLOBAL 41        BOT_GLOBAL = bot
 42
 43        # logging.basicConfig()
Using the global statement
129
130
131async def init_client_session():
132    global client_session133    client_session = aiohttp.ClientSession()