Fixed pep8 errors

This commit is contained in:
Hemna 2022-07-06 19:39:41 -04:00
parent 347a6d69f7
commit 29b84b453b
4 changed files with 6 additions and 6 deletions

View File

@ -2,9 +2,9 @@ import queue
# Make these available to anyone importing
# aprsd.threads
from .aprsd import APRSDThread, APRSDThreadList
from .keep_alive import KeepAliveThread
from .rx import APRSDRXThread
from .aprsd import APRSDThread, APRSDThreadList # noqa: F401
from .keep_alive import KeepAliveThread # noqa: F401
from .rx import APRSDRXThread # noqa: F401
rx_msg_queue = queue.Queue(maxsize=20)

View File

@ -9,6 +9,7 @@ from aprsd.threads import APRSDThread, APRSDThreadList
LOG = logging.getLogger("APRSD")
class KeepAliveThread(APRSDThread):
cntr = 0
checker_time = datetime.datetime.now()

View File

@ -10,7 +10,6 @@ from aprsd.threads import APRSDThread
LOG = logging.getLogger("APRSD")
class APRSDRXThread(APRSDThread):
def __init__(self, msg_queues, config):
super().__init__("RX_MSG")

View File

@ -9,10 +9,10 @@ import update_checker
import aprsd
from .fuzzyclock import fuzzy
from .fuzzyclock import fuzzy # noqa: F401
# Make these available by anyone importing
# aprsd.utils
from .ring_buffer import RingBuffer
from .ring_buffer import RingBuffer # noqa: F401
def env(*vars, **kwargs):