Add fix for pyodbc+mssql (#6621)

* add fix for odbc+mssql

* fix for pylint/pep8
This commit is contained in:
Chinh Nguyen
2019-01-13 09:30:05 -08:00
committed by Maxime Beauchemin
parent ae6217ba55
commit 284a0cccd3
3 changed files with 51 additions and 0 deletions

12
tests/fixtures/pyodbcRow.py vendored Normal file
View File

@@ -0,0 +1,12 @@
# pylint: disable=C,R,W
class Row(object):
def __init__(self, values):
self.values = values
def __name__(self):
return 'Row'
def __iter__(self):
return (item for item in self.values)