From: Daniele Varrazzo Date: Tue, 24 Aug 2021 14:46:24 +0000 (+0200) Subject: Drop TODO point for something that probably can't be improved X-Git-Tag: 3.0.beta1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59dd5e6c98ea1e883d0b601bd9a9103f762df0ec;p=thirdparty%2Fpsycopg.git Drop TODO point for something that probably can't be improved --- diff --git a/psycopg/psycopg/pq/__init__.py b/psycopg/psycopg/pq/__init__.py index e78f6b6ec..1211d521b 100644 --- a/psycopg/psycopg/pq/__init__.py +++ b/psycopg/psycopg/pq/__init__.py @@ -61,7 +61,6 @@ def import_from_libpq() -> None: # The best implementation: fast but requires the system libpq installed if not impl or impl == "c": try: - # TODO: extension module not recognised by mypy? from psycopg_c import pq as module # type: ignore except Exception as e: handle_error("c", e)