Simplify Boolean

This commit is contained in:
Hugo 2017-11-28 10:25:09 +02:00 committed by Daniele Varrazzo
parent 53c1c5dcc1
commit 2f3c233f38

View File

@ -6,7 +6,7 @@ class B(object):
print "ga called", attr
return object.__getattribute__(self, attr)
def _sqlquote(self):
if self._o == True:
if self._o:
return 'It is True'
else:
return 'It is False'