Format Python bindings code using Ruff

- Use double quotes (Ruff/Black default)
- Configure some set of linters to use with Ruff
This commit is contained in:
Lauri Virtanen
2024-08-31 13:43:49 +03:00
parent 4738d16c6f
commit 6bd1d28e26
4 changed files with 54 additions and 55 deletions

View File

@@ -14,16 +14,16 @@ from ._limbo import (
)
__all__ = [
'__version__',
'Connection',
'Cursor',
'InterfaceError',
'DatabaseError',
'DataError',
'OperationalError',
'IntegrityError',
'InternalError',
'ProgrammingError',
'NotSupportedError',
'connect',
"__version__",
"Connection",
"Cursor",
"InterfaceError",
"DatabaseError",
"DataError",
"OperationalError",
"IntegrityError",
"InternalError",
"ProgrammingError",
"NotSupportedError",
"connect",
]