]> git.phdru.name Git - sqlconvert.git/blobdiff - sqlconvert/process_mysql.py
Style: Ignore flake8 W605 invalid \* escape
[sqlconvert.git] / 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):