]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix rendering of a SQL example in indexable examples (#12751)
authorDenis Laxalde <denis@laxalde.org>
Sat, 26 Jul 2025 16:02:46 +0000 (18:02 +0200)
committerGitHub <noreply@github.com>
Sat, 26 Jul 2025 16:02:46 +0000 (18:02 +0200)
lib/sqlalchemy/ext/indexable.py

index 886069ce000b528aa7bb69fce72f177c42893c49..883d9742078cac9314154d742877ca40c41b7b5c 100644 (file)
@@ -216,6 +216,7 @@ for indexed access, instead of the usual index operator of ``->``::
     >>> query = session.query(Person).filter(Person.age < 20)
 
 The above query will render:
+
 .. sourcecode:: sql
 
     SELECT person.id, person.data