Rename all modules to comply with PEP8

Lowercase with underscores
This commit is contained in:
Ben
2019-05-16 16:34:16 +01:00
parent 5a77c09ac7
commit 75c05604d9
59 changed files with 116 additions and 100 deletions

11
bootstrap.py Normal file
View File

@@ -0,0 +1,11 @@
import asyncio
import sys
from houdini.houdini import HoudiniFactory
if __name__ == '__main__':
if sys.platform == 'win32':
loop = asyncio.ProactorEventLoop()
asyncio.set_event_loop(loop)
factory_instance = HoudiniFactory(server='Login')
asyncio.run(factory_instance.start())