From: Anton Kovalevich Date: Tue, 5 Oct 2021 21:36:44 +0000 (+0300) Subject: Fix black X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7145%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix black --- diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 46e29ce8c0..51c0c901bb 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -1286,7 +1286,7 @@ class MatchExpressionTest(fixtures.TestBase, AssertsCompiledSQL): def test_match_expression_supports_bindparam(self): firstname = self.match_table.c.firstname lastname = self.match_table.c.lastname - against = bindparam('against', required=True) + against = bindparam("against", required=True) expr = match(firstname, lastname, against=against)