diff --git a/src/accounting/report/reports/journal.py b/src/accounting/report/reports/journal.py index fcf25e8..e0d2ff3 100644 --- a/src/accounting/report/reports/journal.py +++ b/src/accounting/report/reports/journal.py @@ -181,7 +181,6 @@ class Journal(BaseReport): :param period: The period. """ - """The account.""" self.__period: Period = period """The period.""" self.__entries: list[ReportEntry] = self.__query_entries() diff --git a/src/accounting/report/reports/search.py b/src/accounting/report/reports/search.py index 328ffbe..6643694 100644 --- a/src/accounting/report/reports/search.py +++ b/src/accounting/report/reports/search.py @@ -173,7 +173,6 @@ class Search(BaseReport): def __init__(self): """Constructs a search.""" - """The account.""" self.__entries: list[ReportEntry] = EntryCollector().entries """The journal entries."""