rename state_man -> state_manager

This commit is contained in:
slice 2018-06-19 17:55:23 -07:00
parent 75c79a6503
commit ff05e278f6
No known key found for this signature in database
GPG Key ID: 1508C19D7436A26D
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ log = logging.getLogger(__name__)
class StateManager:
"""Manager for gateway state information."""
def __init__(self):
self.states = defaultdict(dict)

2
run.py
View File

@ -10,7 +10,7 @@ import config
from litecord.blueprints import gateway, auth
from litecord.gateway import websocket_handler
from litecord.errors import LitecordError
from litecord.gateway.state_man import StateManager
from litecord.gateway.state_manager import StateManager
logging.basicConfig(level=logging.INFO)
log = logging.getLogger(__name__)