]> git.phdru.name Git - sqlconvert.git/blobdiff - sqlconvert/process_mysql.py
Build(GHActions): Use `checkout@v4` instead of outdated `v2`
[sqlconvert.git] / sqlconvert / process_mysql.py
index 303dcf3d3651ce321f4610860c22e08adcc7b9a0..c89d6d190940dad18230043b6ae77da89bfababf 100644 (file)
@@ -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):