From d0a633edc6379e87cac256534c5edc1b51d644e8 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 27 Feb 2020 01:49:47 +0300 Subject: [PATCH] Fix(process_mysql): Fix invalid escape sequence `\*` --- 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 303dcf3..c89d6d1 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""" # noqa: W605: \* + """Remove /*! directives */ from the first-level""" new_tokens = [] for token in statement.tokens: if _is_directive_token(token): -- 2.39.2