Skip to content

Commit 7c6daf3

Browse files
committed
fix typo
1 parent 30eb4ba commit 7c6daf3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

AGENTS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
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:

litecli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)