mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
Whitespace cleanup.
This commit is contained in:
parent
3076046b3f
commit
1aed516938
|
@ -102,7 +102,6 @@ class DictRow(list):
|
||||||
except:
|
except:
|
||||||
return default
|
return default
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SQL_IN(object):
|
class SQL_IN(object):
|
||||||
"""Adapt any iterable to an SQL quotable 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
|
# this is the important line: note how every object in the
|
||||||
# list is adapted and then how getquoted() is called on it
|
# list is adapted and then how getquoted() is called on it
|
||||||
qobjs = [str(_A(o).getquoted()) for o in self._seq]
|
qobjs = [str(_A(o).getquoted()) for o in self._seq]
|
||||||
|
|
||||||
return '(' + ', '.join(qobjs) + ')'
|
return '(' + ', '.join(qobjs) + ')'
|
||||||
|
|
||||||
__str__ = getquoted
|
__str__ = getquoted
|
||||||
|
|
Loading…
Reference in New Issue
Block a user