Skip to content

Commit 6cc678c

Browse files
authored
Merge pull request #357 from MarkWh1te/master
fix the python 3.7 compatibility
2 parents 298d2f1 + f260d5b commit 6cc678c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiomysql/cursors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ async def _show_warnings(self, conn):
497497
ProgrammingError = ProgrammingError
498498
NotSupportedError = NotSupportedError
499499

500-
async def __aiter__(self):
500+
def __aiter__(self):
501501
return self
502502

503503
async def __anext__(self):

0 commit comments

Comments
 (0)