]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
interim adjustment to code that's not staying formatted
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 Sep 2022 21:08:06 +0000 (17:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 Sep 2022 21:08:06 +0000 (17:08 -0400)
@caselit is fixing this but i just need the build
to pass for the moment

Change-Id: I1c39304c5541ac6f09a80fc157f86f1c86421235

doc/build/core/connections.rst

index 936d83c668f14bc6caa933b99a168093d952a8b8..671d5045485d6bd6f1a92d94f483fce1c3407f43 100644 (file)
@@ -2209,9 +2209,9 @@ to create a new dialect "foodialect://", the steps are as follows:
 3. The entry point can be established in setup.py as follows::
 
     entry_points = """
-        [sqlalchemy.dialects]
-        foodialect = foodialect.dialect:FooDialect
-        """
+          [sqlalchemy.dialects]
+          foodialect = foodialect.dialect:FooDialect
+          """
 
 If the dialect is providing support for a particular DBAPI on top of
 an existing SQLAlchemy-supported database, the name can be given
@@ -2219,9 +2219,9 @@ including a database-qualification.  For example, if ``FooDialect``
 were in fact a MySQL dialect, the entry point could be established like this::
 
     entry_points = """
-        [sqlalchemy.dialects]
-        mysql.foodialect = foodialect.dialect:FooDialect
-        """
+            [sqlalchemy.dialects]
+            mysql.foodialect = foodialect.dialect:FooDialect
+            """
 
 The above entrypoint would then be accessed as ``create_engine("mysql+foodialect://")``.