Skip to content

Commit 991d02d

Browse files
Sort __all__ entries alphabetically (RUF022)
The transposed entries would fail Ruff's RUF022 check on the next lint cycle and hide a real "where is X exported?" discoverability problem when the module exports both ``parse_address`` (helper) and ``__version__`` / ``connect`` / ``create_pool`` (top-level API). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent cdd7b74 commit 991d02d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dqliteclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
"OperationalError",
4949
"ProtocolError",
5050
"RedirectPolicy",
51-
"parse_address",
5251
"__version__",
5352
"allowlist_policy",
5453
"connect",
5554
"create_pool",
55+
"parse_address",
5656
]
5757

5858

0 commit comments

Comments
 (0)