]> git.phdru.name Git - sqlconvert.git/blobdiff - scripts/mysql2sql
Refactor: Rename internal `statement` to `_statement`
[sqlconvert.git] / scripts / mysql2sql
index e63c1fd8f5942f0735256d5aae12e51e3ebd318a..cacbafa13444ea26898b5dcca80b065784fad485 100755 (executable)
@@ -60,8 +60,8 @@ def main(infile, encoding, outfile, output_encoding, use_pbar, quoting_style):
             got_directive = is_directive_statement(statement)
             if got_directive:
                 continue
-            for statement in process_statement(statement, quoting_style):
-                print_tokens(statement, outfile=outfile,
+            for _statement in process_statement(statement, quoting_style):
+                print_tokens(_statement, outfile=outfile,
                              encoding=output_encoding)
     tokens = grouper.close()
     if tokens: