]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add 'or' comment between code blocks (#9236)
authorAM-ops <53950803+AM-ops@users.noreply.github.com>
Sat, 4 Feb 2023 19:12:57 +0000 (21:12 +0200)
committerGitHub <noreply@github.com>
Sat, 4 Feb 2023 19:12:57 +0000 (20:12 +0100)
doc/build/changelog/migration_20.rst

index 604d59e083beaa8f60d2182d02f403700e0d062b..d31ed5b02d6dd813445f0558328afbfa759c3417 100644 (file)
@@ -1522,6 +1522,9 @@ following the table, and may include additional notes not summarized here.
             select(func.count()).
             select_from(User)
           ).one()
+
+          # or
+          
           session.scalars(
             select(func.count(User.id))
           ).one()