diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-09-12 23:40:56 +0200 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-09-12 23:45:19 +0200 |
commit | 8a46ea8ef3df521a518d408aa70ec17fbd0370b5 (patch) | |
tree | d9dddb9d3e6a81a16941f6280a2afdcd13d8c951 | |
parent | 8d2f12821955beff5839c11b16d82c0e2a87917b (diff) |
Remove unused imports
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
-rw-r--r-- | swiftstory/Client.py | 2 | ||||
-rw-r--r-- | swiftstory/Game.py | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/swiftstory/Client.py b/swiftstory/Client.py index 5116f51..6f98301 100644 --- a/swiftstory/Client.py +++ b/swiftstory/Client.py @@ -1,8 +1,6 @@ import asyncio -import websockets from swiftstory.Status import error -from swiftstory.Game import Game class Client: diff --git a/swiftstory/Game.py b/swiftstory/Game.py index 93502bd..bcf9b64 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -1,4 +1,3 @@ -import json import random from swiftstory.Player import Player |