forked from M-Labs/thermostat
Just catch asyncio.TimeoutError
Will just change to TimeoutError once we switch to Python 3.11 in the flake.
This commit is contained in:
parent
4a038d04d1
commit
206b825e88
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue