From 5a682e331069520ccad9e6bf3cc5e4a77a889ef0 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Tue, 19 Oct 2021 15:47:00 -0400 Subject: [PATCH] fix: use pep8 line length not black 88 column --- test/dialect/mysql/test_compiler.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 126d69c9cd..bc190e6065 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -81,10 +81,11 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): ) def test_reserved_words_mysql_vs_mariadb(self): - # note: in the event that MariaDB adds "lead" to the list of reserved words - # at https://mariadb.com/kb/en/reserved-words/ this test will need to be - # updated. Similarly, if MySQL adds page_checksum as a reserved word, this - # will need to be updated. As of Oct. 19, 2021 this test is valid. + # note: in the event that MariaDB adds "lead" to the list of reserved + # words at https://mariadb.com/kb/en/reserved-words/ this test will + # need to be updated. Similarly, if MySQL adds page_checksum as a + # reserved word, this will need to be updated. As of Oct. 19, 2021 + # this test is valid. # # values were taken from diff in Github pull request 7207 table = Table( -- 2.47.3