Fix PEP8 in example

This commit is contained in:
INADA Naoki 2016-01-15 11:09:13 +09:00
parent 6bc00d697f
commit 0b5ff77930
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python
from __future__ import print_function
import pymysql
@ -15,7 +14,7 @@ print(cur.description)
print()
for row in cur:
print(row)
print(row)
cur.close()
conn.close()