From: Denis Laxalde Date: Fri, 19 May 2023 07:06:55 +0000 (+0200) Subject: chore: add a trailing comma in Error.__init__() to make black happy X-Git-Tag: 3.1.10~14^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=032d777ccd4d9a2f58c31ade18f499a3350ed6cf;p=thirdparty%2Fpsycopg.git chore: add a trailing comma in Error.__init__() to make black happy --- 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