From 032d777ccd4d9a2f58c31ade18f499a3350ed6cf Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Fri, 19 May 2023 09:06:55 +0200 Subject: [PATCH] chore: add a trailing comma in Error.__init__() to make black happy --- psycopg/psycopg/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psycopg/psycopg/errors.py b/psycopg/psycopg/errors.py index d8b7f6fd8..8fe13f1d0 100644 --- a/psycopg/psycopg/errors.py +++ b/psycopg/psycopg/errors.py @@ -60,7 +60,7 @@ class Error(Exception): *args: Sequence[Any], info: ErrorInfo = None, encoding: str = "utf-8", - pgconn: Optional[PGconn] = None + pgconn: Optional[PGconn] = None, ): super().__init__(*args) self._info = info -- 2.47.2