Whitespace cleanup.

This commit is contained in:
Federico Di Gregorio 2006-01-06 02:58:24 +00:00
parent 3076046b3f
commit 1aed516938

View File

@ -102,7 +102,6 @@ class DictRow(list):
except:
return default
class SQL_IN(object):
"""Adapt any iterable to an SQL quotable object."""
@ -114,7 +113,6 @@ class SQL_IN(object):
# this is the important line: note how every object in the
# list is adapted and then how getquoted() is called on it
qobjs = [str(_A(o).getquoted()) for o in self._seq]
return '(' + ', '.join(qobjs) + ')'
__str__ = getquoted