From a3c27dbd72ac7a556ef0b2a1b3e660f687daa22a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 1 Aug 2022 14:10:55 +0200 Subject: [PATCH] minor fixes --- client-py3/full/src/UDSClientLauncher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-py3/full/src/UDSClientLauncher.py b/client-py3/full/src/UDSClientLauncher.py index aa823ec1..146099d1 100644 --- a/client-py3/full/src/UDSClientLauncher.py +++ b/client-py3/full/src/UDSClientLauncher.py @@ -45,7 +45,7 @@ class UdsApplication(QtWidgets.QApplication): tunnel.kill() def event(self, evnt: QtCore.QEvent) -> bool: - if evnt.type() == QtCore.QEvent.FileOpen: + if evnt.type() == QtCore.QEvent.FileOpen: # type: ignore fe = typing.cast(QtGui.QFileOpenEvent, evnt) logger.debug('Got url: %s', fe.url().url()) fe.accept()