]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix long line
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 10 May 2019 00:32:04 +0000 (20:32 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 10 May 2019 00:32:20 +0000 (20:32 -0400)
Change-Id: If44d364ae02da447169a3dc51b6514225578cf82
(cherry picked from commit 3abced7bd2842d41e17f438a65efc15aa71d4bb4)

lib/sqlalchemy/sql/selectable.py

index efce912f950dc6b646f4f10782dce668c206841d..f15e685a857595a165c3785f3a7cb81758958bb6 100644 (file)
@@ -166,7 +166,8 @@ class HasPrefixes(object):
             stmt = table.insert().prefix_with("LOW_PRIORITY", dialect="mysql")
 
             # MySQL 5.7 optimizer hints
-            stmt = select([table]).prefix_with("/*+ BKA(t1) */", dialect="mysql")
+            stmt = select([table]).prefix_with(
+                "/*+ BKA(t1) */", dialect="mysql")
 
         Multiple prefixes can be specified by multiple calls
         to :meth:`.prefix_with`.