From 206b825e88bad952fcf0a25721452324d3352813 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 2727e16..a110ff6 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: