Properly call super() in subclasses (#14124)

This commit is contained in:
gtsiam
2024-10-02 19:35:46 -06:00
committed by GitHub
parent 3c015bf822
commit 54900ae318
18 changed files with 19 additions and 38 deletions
+1 -2
View File
@@ -12,8 +12,7 @@ SOCKET_SUB = "ipc:///tmp/cache/proxy_sub"
class ZmqProxyRunner(threading.Thread):
def __init__(self, context: zmq.Context[zmq.Socket]) -> None:
threading.Thread.__init__(self)
self.name = "detection_proxy"
super().__init__(name="detection_proxy")
self.context = context
def run(self) -> None: