From 2dd7d38c423f78f134d2bc7b30d6a3017a291c37 Mon Sep 17 00:00:00 2001 From: Elias Fandi <16519982+eliasfandi@users.noreply.github.com> Date: Sun, 29 Sep 2024 22:42:02 -0700 Subject: [PATCH] Update line emphasis sqlalchemy "Using the init plugin" tutorial --- docs/tutorials/sqlalchemy/3-init-plugin.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/sqlalchemy/3-init-plugin.rst b/docs/tutorials/sqlalchemy/3-init-plugin.rst index 0990c1cf96..94b3eb75ef 100644 --- a/docs/tutorials/sqlalchemy/3-init-plugin.rst +++ b/docs/tutorials/sqlalchemy/3-init-plugin.rst @@ -19,7 +19,7 @@ Here's the updated code: .. literalinclude:: /examples/contrib/sqlalchemy/plugins/tutorial/full_app_with_init_plugin.py :language: python :linenos: - :emphasize-lines: 12,30,78-79,87 + :emphasize-lines: 11,30,78-79,87 The most notable difference is that we no longer need the ``db_connection()`` lifespan context manager - the plugin handles this for us. It also handles the creation of the tables in our database if we supply our metadata and