""" Watch for locevt and print them """
+from configparser import ConfigParser
from datetime import datetime, timezone
from logging import getLogger
import zmq
log = getLogger("gps303/watch")
-def runserver(conf):
- zctx = zmq.Context()
- zsub = zctx.socket(zmq.SUB)
+def runserver(conf: ConfigParser) -> None:
+ # Is this https://github.com/zeromq/pyzmq/issues/1627 still not fixed?!
+ zctx = zmq.Context() # type: ignore
+ zsub = zctx.socket(zmq.SUB) # type: ignore
zsub.connect(conf.get("collector", "publishurl"))
zsub.setsockopt(zmq.SUBSCRIBE, b"")