Skip to content

Commit 24053e7

Browse files
committed
Fix screens import path in connection_error_handlers.py
1 parent a44ebcd commit 24053e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlit/ui/connection_error_handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def can_handle(self, error: Exception) -> bool:
2828

2929
def handle(self, app: AppProtocol, error: Exception, config: ConnectionConfig) -> None:
3030
from ..services.installer import Installer
31-
from ..screens import PackageSetupScreen
31+
from .screens import PackageSetupScreen
3232

3333
app.push_screen(
3434
PackageSetupScreen(error, on_install=lambda err: Installer(app).install(err)),
@@ -45,7 +45,7 @@ def can_handle(self, error: Exception) -> bool:
4545
def handle(self, app: AppProtocol, error: Exception, config: ConnectionConfig) -> None:
4646
from ..config import save_connections
4747
from ..terminal import run_in_terminal
48-
from ..screens import ConfirmScreen, DriverSetupScreen, MessageScreen
48+
from .screens import ConfirmScreen, DriverSetupScreen, MessageScreen
4949

5050
def on_confirm(confirmed: bool | None) -> None:
5151
if confirmed is not True:

0 commit comments

Comments
 (0)