From 7e69d23610f39468b24c0a9a1ffdbdab20ae34fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aram=C3=ADs=20Segovia?= Date: Tue, 13 May 2025 13:20:32 -0400 Subject: [PATCH] Fix docstring for `__rlshift__` --- lib/sqlalchemy/sql/operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index 7c36bdc469..7e751e13d0 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -672,7 +672,7 @@ class ColumnOperators(Operators): return self.operate(lshift, other) def __rlshift__(self, other: Any) -> ColumnOperators: - """Implement the ``<<`` operator. + """Implement the ``<<`` operator in reverse. Not used by SQLAlchemy core, this is provided for custom operator systems which want to use -- 2.47.2