Skip to content

Commit c5a053d

Browse files
sobolevndvarrazzo
authored andcommitted
fix: fix status annotation in connection_summary
Currently enum names are strings, but this is being changed to become Literal. When this will happen, the type inferred will not be valid anymore, as we mutate it and manipulate it as string in the function. See python/mypy#18797
1 parent 1b1c1d8 commit c5a053d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psycopg/psycopg/pq/misc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def connection_summary(pgconn: abc.PGconn) -> str:
153153
parts = []
154154
if pgconn.status == OK:
155155
# Put together the [STATUS]
156-
status = TransactionStatus(pgconn.transaction_status).name
156+
status: str = TransactionStatus(pgconn.transaction_status).name
157157
if pgconn.pipeline_status:
158158
status += f", pipeline={PipelineStatus(pgconn.pipeline_status).name}"
159159

0 commit comments

Comments
 (0)