]> 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:30 +0000 (20:32 -0400)
Change-Id: If44d364ae02da447169a3dc51b6514225578cf82
(cherry picked from commit 3abced7bd2842d41e17f438a65efc15aa71d4bb4)

lib/sqlalchemy/sql/selectable.py

index 566c5ce212b29261a506379c5cfb18d38f1ecb20..2e8cf59fb643820158b323ad91dfdb67e7363d9c 100644 (file)
@@ -278,7 +278,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`.