From 3abced7bd2842d41e17f438a65efc15aa71d4bb4 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 9 May 2019 20:32:04 -0400 Subject: [PATCH] - fix long line Change-Id: If44d364ae02da447169a3dc51b6514225578cf82 --- lib/sqlalchemy/sql/selectable.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index ff9ab984e5..5167182fe2 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -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`. -- 2.47.2