diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-05-15 00:32:45 +0200 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-05-15 02:47:20 +0200 |
commit | d01091afabaeb2665fa8773ccd37cc437230c9eb (patch) | |
tree | f9a77b343b43172beda9de61c40e2b80dc193d92 /swiftstory/SwiftStory.py | |
parent | 638af2c54513a928e6fe82bcb2932c09da6931b2 (diff) |
Add cosmetic changes
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/SwiftStory.py')
-rw-r--r-- | swiftstory/SwiftStory.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/swiftstory/SwiftStory.py b/swiftstory/SwiftStory.py index e77363d..de3eab8 100644 --- a/swiftstory/SwiftStory.py +++ b/swiftstory/SwiftStory.py @@ -2,13 +2,13 @@ import argparse import asyncio +import json import websockets import swiftstory.GameManager from swiftstory.Client import Client from swiftstory.Status import error -import json game_manager = swiftstory.GameManager.GameManager() @@ -79,5 +79,6 @@ def main(): asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() + if __name__ == '__main__': main() |