Skip to content

Commit 2b28cd1

Browse files
committed
pep8
1 parent a26522b commit 2b28cd1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymonetdb/sql/cursors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
Description = namedtuple('Description', ('name', 'type_code', 'display_size', 'internal_size', 'precision', 'scale',
1818
'null_ok'))
1919

20+
2021
class Cursor(object):
2122
"""This object represents a database cursor, which is used to manage
2223
the context of a fetch operation. Cursors created from the same
@@ -374,7 +375,7 @@ def _store_result(self, block):
374375
elif identity == "type":
375376
type_ = values
376377
elif identity == "length":
377-
length = values # not used
378+
length = values # not used
378379
elif identity == "typesizes":
379380
typesizes = [[int(j) for j in i.split()] for i in values]
380381
internal_size = [x[0] for x in typesizes]

0 commit comments

Comments
 (0)