diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-12-27 20:36:27 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-12-27 20:38:42 +0100 |
commit | 8d242a5e6c090ee8165b36fea6520d533269518e (patch) | |
tree | 05f69232e83934734ee6ebb1ff41ba0f1fa3b205 | |
parent | a101bdaa02465c503c71cfc15b1820a40c22d2b8 (diff) |
Remove unnecessary module imports
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
-rw-r--r-- | swiftstory/game_manager.py | 1 | ||||
-rw-r--r-- | swiftstory/interface/ws.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/swiftstory/game_manager.py b/swiftstory/game_manager.py index a69704c..2429d92 100644 --- a/swiftstory/game_manager.py +++ b/swiftstory/game_manager.py @@ -1,6 +1,5 @@ from dataclasses import dataclass import logging -import os from typing import Dict, List import pkg_resources diff --git a/swiftstory/interface/ws.py b/swiftstory/interface/ws.py index d63e71c..2485b4f 100644 --- a/swiftstory/interface/ws.py +++ b/swiftstory/interface/ws.py @@ -1,4 +1,3 @@ -import asyncio import contextlib import json import logging |