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
eb8944e5ac
commit
1ec541d580
@ -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
Block a user