Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jettify committed Sep 15, 2015
1 parent a5e4403 commit 1bfaacc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions aioodbc/cursor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import asyncio
from pyodbc import OperationalError


from .log import logger


Expand Down Expand Up @@ -183,8 +182,7 @@ def __anext__(self):
if ret is not None:
return ret
else:
# TODO: this exception is not available in python 3.4,
# figure out how to support both 3.4 and 3.5
# This exception is not available in python < 3.5,
raise StopAsyncIteration

@asyncio.coroutine
Expand Down

0 comments on commit 1bfaacc

Please sign in to comment.