Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Feb 5, 2024
1 parent 0b376f4 commit 0968109
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.13
rev: v0.2.0
hooks:
- id: ruff
args: ["--preview", "--fix"]
Expand Down
2 changes: 1 addition & 1 deletion src/pg_purepy/conversion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ def apply_default_converters(protocol: SansIOClient) -> None:
protocol.add_converter(STATIC_DATEA_CONVERTER)


__all__ = ("Converter", "apply_default_converters", "EnumConverter", "ArrayConverter")
__all__ = ("ArrayConverter", "Converter", "EnumConverter", "apply_default_converters")
34 changes: 17 additions & 17 deletions src/pg_purepy/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,29 +380,29 @@ def wrap_error(response: ErrorOrNoticeResponse, query: str | None = None) -> Bas


__all__ = (
"PostgresMessage",
"AuthenticationCompleted",
"AuthenticationMethod",
"AuthenticationRequest",
"BackendKeyData",
"AuthenticationMethod",
"AuthenticationCompleted",
"ParameterStatus",
"ReadyForQueryState",
"ReadyForQuery",
"QueryResultMessage",
"RowDescription",
"DataRow",
"CommandComplete",
"ParseComplete",
"ParameterDescription",
"PreparedStatementInfo",
"BaseDatabaseError",
"BindComplete",
"ErrorResponseFieldType",
"ColumnDescription",
"CommandComplete",
"DataRow",
"ErrorOrNoticeResponse",
"ErrorResponseFieldType",
"InvalidPasswordError",
"BaseDatabaseError",
"ParameterDescription",
"ParameterStatus",
"ParseComplete",
"PortalSuspended",
"PostgresMessage",
"PreparedStatementInfo",
"QueryResultMessage",
"ReadyForQuery",
"ReadyForQueryState",
"RecoverableDatabaseError",
"RowDescription",
"UnrecoverableDatabaseError",
"ColumnDescription",
"PortalSuspended",
"wrap_error",
)

0 comments on commit 0968109

Please sign in to comment.