forked from Firepup650/python-talk
Typo and small correction
This commit is contained in:
parent
17f9ee7cae
commit
907a46fe4e
1 changed files with 2 additions and 2 deletions
|
@ -7,9 +7,9 @@ from logs import log
|
||||||
class Globals: ...
|
class Globals: ...
|
||||||
|
|
||||||
|
|
||||||
# The below line is a hacky fix for python 3.10 asyncio
|
# The two below lines are a hacky fix for python 3.10 asyncio
|
||||||
TimoutError = TimeoutError
|
TimoutError = TimeoutError
|
||||||
TimeoutError = (TimoutError, aysncio.exceptions.TimeoutError)
|
TimeoutError = (TimoutError, asyncio.exceptions.TimeoutError)
|
||||||
G = Globals()
|
G = Globals()
|
||||||
G.uniqueClients = 0
|
G.uniqueClients = 0
|
||||||
G.servers = {}
|
G.servers = {}
|
||||||
|
|
Loading…
Reference in a new issue