mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 10:54:32 +02:00
* Automated upgrades by Ruff
uvx --with 'ruff>=0.16.0' ruff check . --fix --unsafe-fixes
* Fix remaining Ruff errors with GPT-5.6 Sol high
https://gist.github.com/simonw/6da7906a9fea6e90da131c21a9055199
* Fix flake E501 long lines
* New Protocol for migrations to make ty happy
6 lines
228 B
Python
6 lines
228 B
Python
from .db import Database
|
|
from .hookspecs import hookimpl, hookspec
|
|
from .migrations import Migrations
|
|
from .utils import suggest_column_types
|
|
|
|
__all__ = ["Database", "Migrations", "hookimpl", "hookspec", "suggest_column_types"]
|