From 8cf81b5459b4f6c3cdf93d03069d7f46237d1e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Fri, 3 Mar 2023 23:09:20 +0800 Subject: [PATCH] Revised the documentation of the "accounting.account.queries", "accounting.base_account.queries", "accounting.currency.queries", and "accounting.transaction.queries" modules. --- src/accounting/account/queries.py | 2 +- src/accounting/base_account/queries.py | 2 +- src/accounting/currency/queries.py | 2 +- src/accounting/transaction/queries.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/accounting/account/queries.py b/src/accounting/account/queries.py index bb0cf3f..871ec7c 100644 --- a/src/accounting/account/queries.py +++ b/src/accounting/account/queries.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The account queries. +"""The queries for the account management. """ import sqlalchemy as sa diff --git a/src/accounting/base_account/queries.py b/src/accounting/base_account/queries.py index 7df91f5..9628cc9 100644 --- a/src/accounting/base_account/queries.py +++ b/src/accounting/base_account/queries.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The base account queries. +"""The queries for the base account management. """ import sqlalchemy as sa diff --git a/src/accounting/currency/queries.py b/src/accounting/currency/queries.py index 7bf0c9e..4da9bc9 100644 --- a/src/accounting/currency/queries.py +++ b/src/accounting/currency/queries.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The currency queries. +"""The queries for the currency management. """ import sqlalchemy as sa diff --git a/src/accounting/transaction/queries.py b/src/accounting/transaction/queries.py index a231d5a..52f62ab 100644 --- a/src/accounting/transaction/queries.py +++ b/src/accounting/transaction/queries.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The transaction queries. +"""The queries for the transaction management. """ from datetime import datetime