Skip to content

Commit

Permalink
Merge pull request #357 from MarkWh1te/master
Browse files Browse the repository at this point in the history
fix the python 3.7 compatibility
  • Loading branch information
terrycain authored Nov 20, 2018
2 parents 298d2f1 + f260d5b commit 6cc678c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiomysql/cursors.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ async def _show_warnings(self, conn):
ProgrammingError = ProgrammingError
NotSupportedError = NotSupportedError

async def __aiter__(self):
def __aiter__(self):
return self

async def __anext__(self):
Expand Down

0 comments on commit 6cc678c

Please sign in to comment.