From a21825fb4b85e1300c0dfcf63e4056d02c884ebd Mon Sep 17 00:00:00 2001 From: imacat Date: Fri, 14 Aug 2020 07:35:36 +0800 Subject: [PATCH] Added documentation to the account form view in the accounting application. --- accounting/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/accounting/views.py b/accounting/views.py index 2fde130..ac9ebe3 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -983,6 +983,7 @@ class AccountView(DetailView): @method_decorator(login_required, name="dispatch") class AccountFormView(FormView): + """The account form.""" model = Account form = AccountForm not_modified_message = gettext_noop("This account was not modified.")