Skip to content

Commit baee522

Browse files
Sort __all__ alphabetically (RUF022)
Apply isort-style sorting to the package's __all__ list. Pure cosmetic; no behaviour change. Cross-package sibling cleanup — client and dbapi mirror this where their __all__ structure permits. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8997e51 commit baee522

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

src/dqlitewire/__init__.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -81,30 +81,15 @@
8181
__version__ = "0.1.3"
8282

8383
__all__ = [
84-
"ContinuationError",
8584
"DEFAULT_MAX_CONTINUATION_FRAMES",
8685
"DEFAULT_MAX_TOTAL_ROWS",
87-
"__version__",
88-
"DecodeError",
89-
"EncodeError",
90-
"HandshakeError",
91-
"Header",
9286
"LEADER_ERROR_CODES",
93-
"Message",
94-
"MessageDecoder",
95-
"MessageEncoder",
96-
"NodeRole",
9787
"PROTOCOL_VERSION",
9888
"PROTOCOL_VERSION_LEGACY",
99-
"PoisonedError",
100-
"ProtocolError",
10189
"ROW_DONE_BYTE",
10290
"ROW_DONE_MARKER",
10391
"ROW_PART_BYTE",
10492
"ROW_PART_MARKER",
105-
"ReadBuffer",
106-
"RequestType",
107-
"ResponseType",
10893
"SQLITE_ABORT",
10994
"SQLITE_CORRUPT",
11095
"SQLITE_FULL",
@@ -113,13 +98,28 @@
11398
"SQLITE_IOERR_LEADERSHIP_LOST",
11499
"SQLITE_IOERR_NOT_LEADER",
115100
"SQLITE_PRIMARY_CODE_MASK",
101+
"TX_AUTO_ROLLBACK_PRIMARY_CODES",
102+
"ContinuationError",
103+
"DecodeError",
104+
"EncodeError",
105+
"HandshakeError",
106+
"Header",
107+
"Message",
108+
"MessageDecoder",
109+
"MessageEncoder",
110+
"NodeRole",
111+
"PoisonedError",
112+
"ProtocolError",
113+
"ReadBuffer",
114+
"RequestType",
115+
"ResponseType",
116116
"ServerFailure",
117117
"StreamError",
118-
"TX_AUTO_ROLLBACK_PRIMARY_CODES",
119118
"ValueType",
120119
"WireInput",
121120
"WireValue",
122121
"WriteBuffer",
122+
"__version__",
123123
"decode_message",
124124
"encode_message",
125125
"primary_sqlite_code",

0 commit comments

Comments
 (0)