]> 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:04 +0000 (20:32 -0400)
Change-Id: If44d364ae02da447169a3dc51b6514225578cf82

lib/sqlalchemy/sql/selectable.py

index ff9ab984e5d226b441dbd88b40b49dd4709a9f16..5167182fe2dbcd83ada670ae62312bdae624a134 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`.