Skip to content

Commit 5746435

Browse files
fix: remove extra blank lines between exception classes
After removing pass statements in a previous cleanup, trailing blank lines inside class bodies created 3 blank lines between classes instead of PEP 8's standard 2. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5a70a26 commit 5746435

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/dqliteclient/exceptions.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,18 @@ class DqliteError(Exception):
55
"""Base exception for dqlite client errors."""
66

77

8-
98
class DqliteConnectionError(DqliteError):
109
"""Error establishing or maintaining connection."""
1110

1211

13-
1412
class ProtocolError(DqliteError):
1513
"""Protocol-level error."""
1614

1715

18-
1916
class ClusterError(DqliteError):
2017
"""Cluster-related error (leader not found, etc)."""
2118

2219

23-
2420
class OperationalError(DqliteError):
2521
"""Database operation error."""
2622

0 commit comments

Comments
 (0)