From: Daniele Varrazzo Date: Sun, 5 Apr 2020 01:20:21 +0000 (+1200) Subject: Dropped spurious comment X-Git-Tag: 3.0.dev0~607 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=739344ccc2374c3f7cc5a4ef57768fe029b99a59;p=thirdparty%2Fpsycopg.git Dropped spurious comment --- diff --git a/psycopg3/types/numeric.py b/psycopg3/types/numeric.py index d11908792..2d7d6c93b 100644 --- a/psycopg3/types/numeric.py +++ b/psycopg3/types/numeric.py @@ -41,7 +41,6 @@ def adapt_float(obj: float) -> Tuple[bytes, int]: @Adapter.text(Decimal) def adapt_decimal(obj: Decimal) -> Tuple[bytes, int]: - # Float can't be bigger than this instead return _encode(str(obj))[0], NUMERIC_OID