diff --git a/master/protocols/__init__.py b/master/protocols/__init__.py index 96a4ecd0..3683ecf3 100644 --- a/master/protocols/__init__.py +++ b/master/protocols/__init__.py @@ -1,5 +1,3 @@ -import logging - from master.protocols.decoder import Decoder from master.protocols.models import ALL_ACTIVE_PROTOCOLS, GameProtocol from master.protocols.models.response import ProtocolResponse diff --git a/master/protocols/models/idtech1/__init__.py b/master/protocols/models/idtech1/__init__.py index 082ad3d7..aa623412 100644 --- a/master/protocols/models/idtech1/__init__.py +++ b/master/protocols/models/idtech1/__init__.py @@ -1,5 +1,3 @@ -from pydantic import Field - from master.protocols.models import GameProtocol from master.protocols.models.response import ProtocolResponse diff --git a/master/server/handlers/healthcheck.py b/master/server/handlers/healthcheck.py index e2892482..83368c14 100644 --- a/master/server/handlers/healthcheck.py +++ b/master/server/handlers/healthcheck.py @@ -1,4 +1,3 @@ -import logging from socketserver import StreamRequestHandler PROTOCOL: str = "HTTP/1.1"