spacing fix

This commit is contained in:
Izalia Mae 2021-05-18 08:47:48 -04:00
parent 713dffa1af
commit 9d6a043bb2

View file

@ -237,6 +237,7 @@ class Session(object):
tclass = self.table[table] tclass = self.table[table]
self.execute(tclass.update().where(tclass.c.id == rowid).values(**data)) self.execute(tclass.update().where(tclass.c.id == rowid).values(**data))
def remove(self, table=None, rowid=None, row=None): def remove(self, table=None, rowid=None, row=None):
if row: if row:
rowid = row.id rowid = row.id