From: Daniele Varrazzo Date: Tue, 24 Aug 2021 19:05:39 +0000 (+0200) Subject: Add oid to column representation X-Git-Tag: 3.0.beta1~43^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed594f7d13246ae946c943f9837e3c844ecf47e8;p=thirdparty%2Fpsycopg.git Add oid to column representation --- diff --git a/psycopg/psycopg/_column.py b/psycopg/psycopg/_column.py index daeb9283d..69d7c8dcc 100644 --- a/psycopg/psycopg/_column.py +++ b/psycopg/psycopg/_column.py @@ -48,7 +48,10 @@ class Column(Sequence[Any]): ) def __repr__(self) -> str: - return f"" + return ( + f"" + ) def __len__(self) -> int: return 7