mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-01-31 09:24:07 +03:00
Whitespace cleanup.
This commit is contained in:
parent
3076046b3f
commit
1aed516938
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user