From 7fcf744ea12d617e2da0deee7c5ba0d61ce3224a Mon Sep 17 00:00:00 2001
From: "Robin.Mueller" <robin.mueller.m@gmail.com>
Date: Wed, 19 Aug 2020 21:42:02 +0200
Subject: [PATCH] removed unneccessary code

---
 sendreceive/obsw_tm_listener.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/sendreceive/obsw_tm_listener.py b/sendreceive/obsw_tm_listener.py
index 236448c..500dcf2 100644
--- a/sendreceive/obsw_tm_listener.py
+++ b/sendreceive/obsw_tm_listener.py
@@ -8,9 +8,7 @@
     This will enable to run the listener in a separate thread later.
     This Listener will propably have some kind of mode. In default configuration,
     it will just listen for packets
-    TODO: Have a look at the new asyncio library. Pyserial has an asyncio extension.
-          See: https://pyserial-asyncio.readthedocs.io/en/latest/index.html
-          Maybe this would simplify things here.
+
 """
 import sys
 import time
@@ -23,7 +21,6 @@ from tm.obsw_pus_tm_factory import PusTmQueueT, PusTmInfoQueueT
 import config.obsw_config as g
 
 LOGGER = get_logger()
-TmListenerT = TypeVar('TmListenerT', bound='TmListener')
 
 
 class TmListener:
-- 
GitLab