From 895bca2508b6512e7da329b3f1ecaca6bed851ac Mon Sep 17 00:00:00 2001 From: imacat Date: Mon, 6 Feb 2023 11:07:18 +0800 Subject: [PATCH] Fixed the documentation of the list_accounts view. --- src/accounting/account/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounting/account/views.py b/src/accounting/account/views.py index cb0aad2..29bc7e4 100644 --- a/src/accounting/account/views.py +++ b/src/accounting/account/views.py @@ -38,7 +38,7 @@ bp: Blueprint = Blueprint("account", __name__) @bp.get("", endpoint="list") @has_permission(can_view) def list_accounts() -> str: - """Lists the base accounts. + """Lists the accounts. :return: The account list. """