From 000b97398be75b97c0afed9f9350f47614c118d6 Mon Sep 17 00:00:00 2001 From: atse Date: Fri, 5 Jul 2024 17:31:55 +0800 Subject: [PATCH] Just catch asyncio.TimeoutError Will just change to TimeoutError once we switch to Python 3.11 in the flake. --- pytec/tec_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index d694fba..e96b928 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -249,7 +249,7 @@ class MainWindow(QtWidgets.QMainWindow): await self.bail() # TODO: Remove asyncio.TimeoutError in Python 3.11 - except (OSError, TimeoutError, asyncio.TimeoutError): + except (OSError, asyncio.TimeoutError): try: await self.bail() except ConnectionResetError: