IMPROVE_ME: Handle the case where Docker is not installed

This looks like a regression, and we need to find a better way to handle
it, or add a unit test.
This commit is contained in:
Alex Pyrgiotis 2025-04-02 15:04:24 +03:00
parent 57667a96be
commit 9d57610693
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -228,7 +228,9 @@ class MainWindow(QtWidgets.QMainWindow):
if not is_version_valid:
self.handle_docker_desktop_version_check(is_version_valid, version)
except errors.UnsupportedContainerRuntime as e:
pass # It's catched later in the flow.
pass # It's caught later in the flow.
except errors.NoContainerTechException as e:
pass # It's caught later in the flow.
self.show()