From 2ba1617a8d4960998c32010502dedb5f6473ff45 Mon Sep 17 00:00:00 2001 From: RobotScribe Date: Wed, 29 Apr 2020 16:20:10 +0200 Subject: [PATCH] Fix pep8 --- test/dialect/mysql/test_compiler.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 68dbd61329..636f9d5297 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -371,9 +371,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): ) self.assert_compile( - table1.select(table1.c.myid == 7).with_for_update( - of=table1 - ), + table1.select(table1.c.myid == 7).with_for_update(of=table1), "SELECT mytable.myid, mytable.name, mytable.description " "FROM mytable WHERE mytable.myid = %s " "FOR UPDATE OF mytable", @@ -425,9 +423,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): ) self.assert_compile( - table1.select(table1.c.myid == 7).with_for_update( - nowait=True - ), + table1.select(table1.c.myid == 7).with_for_update(nowait=True), "SELECT mytable.myid, mytable.name, mytable.description " "FROM mytable WHERE mytable.myid = %s " "FOR UPDATE NOWAIT", -- 2.47.3