From a9a12086f92c1e8d82112aff7e241b817fb1f01b Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 7 May 2017 22:41:06 +0200 Subject: [PATCH] Remove unused parameters. --- accountant/models/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accountant/models/accounts.py b/accountant/models/accounts.py index 17258f8..42517e5 100644 --- a/accountant/models/accounts.py +++ b/accountant/models/accounts.py @@ -32,7 +32,7 @@ class Account(db.Model): self.authorized_overdraft = authorized_overdraft @classmethod - def query(cls, begin=None, end=None): + def query(cls): """Return a query for this class method.""" return db.session.query( cls