From: Juang, Yi-Lin Date: Fri, 10 Jan 2025 22:27:49 +0000 (-0700) Subject: Fix MovedIn20Warning docstring (#12237) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=484d74a4c5bfe22be126e49c662b6cd6a3218eb7;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix MovedIn20Warning docstring (#12237) Remove reference of RemovedIn20Warning --- diff --git a/lib/sqlalchemy/exc.py b/lib/sqlalchemy/exc.py index 71e5dd81e0..d27324475e 100644 --- a/lib/sqlalchemy/exc.py +++ b/lib/sqlalchemy/exc.py @@ -813,7 +813,7 @@ class LegacyAPIWarning(Base20DeprecationWarning): class MovedIn20Warning(Base20DeprecationWarning): - """Subtype of RemovedIn20Warning to indicate an API that moved only.""" + """Subtype of Base20DeprecationWarning to indicate an API that moved only.""" class SAPendingDeprecationWarning(PendingDeprecationWarning):