From: Oleg Broytman Date: Thu, 31 Jan 2019 17:40:15 +0000 (+0300) Subject: Style: Ignore flake8 W605 invalid \* escape X-Git-Tag: 0.2.3~4 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=152b032a9295ba481efb55295272b82b1d64582a Style: Ignore flake8 W605 invalid \* escape --- 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):