From 720e77c8144e62cf5848f65c2c2b550e8e034bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 8 Apr 2023 07:07:45 +0800 Subject: [PATCH] Fixed the documentation of the PeriodConverter and IncomeExpensesAccountConverter path converters. --- src/accounting/report/converters.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/accounting/report/converters.py b/src/accounting/report/converters.py index 0a14928..f51a58c 100644 --- a/src/accounting/report/converters.py +++ b/src/accounting/report/converters.py @@ -28,8 +28,8 @@ from .period import Period, get_period class PeriodConverter(BaseConverter): - """The supplier converter to convert the period specification from and to - the corresponding period in the routes.""" + """The converter to convert the period specification from and to the + corresponding period in the routes.""" def to_python(self, value: str) -> Period: """Converts a period specification to a period. @@ -52,8 +52,8 @@ class PeriodConverter(BaseConverter): class IncomeExpensesAccountConverter(BaseConverter): - """The supplier converter to convert the income and expenses log pseudo - account code from and to the corresponding pseudo account in the routes.""" + """The converter to convert the income and expenses log account code from + and to the corresponding account in the routes.""" def to_python(self, value: str) -> CurrentAccount: """Converts an account code to an account.