]> git.phdru.name Git - sqlconvert.git/commitdiff
Style: Ignore flake8 W605 invalid \* escape
authorOleg Broytman <phd@phdru.name>
Thu, 31 Jan 2019 17:40:15 +0000 (20:40 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 31 Jan 2019 17:55:50 +0000 (20:55 +0300)
sqlconvert/process_mysql.py

index fad7e4cc291a04241834557bbb90aa4c36283e67..ad4d422b4c13fa0ca2f1821009038b0e512c9214 100644 (file)
@@ -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):