]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Dropped spurious comment
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 5 Apr 2020 01:20:21 +0000 (13:20 +1200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 5 Apr 2020 01:20:21 +0000 (13:20 +1200)
psycopg3/types/numeric.py

index d119087929b9f1e992e76d834054a749b3a77319..2d7d6c93b3ddcc304cb353d4510d4891930f00ea 100644 (file)
@@ -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