From 152b032a9295ba481efb55295272b82b1d64582a Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 31 Jan 2019 20:40:15 +0300 Subject: [PATCH] Style: Ignore flake8 W605 invalid \* escape --- sqlconvert/process_mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlconvert/process_mysql.py b/sqlconvert/process_mysql.py index fad7e4c..ad4d422 100644 --- a/sqlconvert/process_mysql.py +++ b/sqlconvert/process_mysql.py @@ -29,7 +29,7 @@ def is_directive_statement(statement): def remove_directive_tokens(statement): - """Remove /\*! directives \*/ from the first-level""" + """Remove /\*! directives \*/ from the first-level""" # noqa: W605: \* new_tokens = [] for token in statement.tokens: if _is_directive_token(token): -- 2.39.2