From: Oleg Broytman Date: Wed, 26 Feb 2020 22:49:47 +0000 (+0300) Subject: Fix(process_mysql): Fix invalid escape sequence `\*` X-Git-Tag: 0.3.0~18 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=d0a633edc6379e87cac256534c5edc1b51d644e8 Fix(process_mysql): Fix invalid escape sequence `\*` --- 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):