comments update

This commit is contained in:
Xevion
2019-07-24 22:00:49 -05:00
parent c10c2e28e4
commit d50b17570d
3 changed files with 20 additions and 4 deletions
+1 -2
View File
@@ -31,8 +31,7 @@ locales_currency = {
}
class LedgerEntry(object):
def __init__(self, date, desc
6ption, change):
def __init__(self, date, description, change):
self.date, self.description, self.change = date, description, change
create_entry = lambda date, description, change: LedgerEntry(datetime.strptime(date, '%Y-%m-%d'), description, change)