File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 2121 - Format: ` ruff format `
2222
2323## ty (type checking)
24-
2524- Repo-wide ` ty check -v `
2625- Per-package: ` ty check litecli -v `
2726- Notes:
Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ def one_iteration(text: str | None = None) -> None:
523523 raise e
524524 except KeyboardInterrupt :
525525 try :
526- # since connection can sqlite3 or sqlean, it's hard to annotate the type for interrupt. so ignore the type hint warning.
526+ # since connection can be sqlite3 or sqlean, it's hard to annotate the type for interrupt. so ignore the type hint warning.
527527 sqlexecute .conn .interrupt () # type: ignore[attr-defined]
528528 except Exception as e :
529529 self .echo (
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies = [
1616 " sqlparse>=0.4.4" ,
1717 " setuptools" , # Required by llm commands to install models
1818 " pip" ,
19- " llm>=0.25.0" ,
19+ " llm>=0.25.0"
2020]
2121
2222[build-system ]
You can’t perform that action at this time.
0 commit comments