Revised the documentation of the CSV rows for the reports.

This commit is contained in:
2023-03-08 17:21:14 +08:00
parent 5dc8387ad9
commit 11ab4a4ba6
7 changed files with 16 additions and 16 deletions

View File

@ -259,10 +259,10 @@ class AccountCollector:
class CSVHalfRow:
"""A half row in the CSV balance sheet."""
"""A half row in the CSV."""
def __init__(self, title: str | None, amount: Decimal | None):
"""The constructs a half row in the CSV balance sheet.
"""The constructs a half row in the CSV.
:param title: The title.
:param amount: The amount.
@ -274,10 +274,10 @@ class CSVHalfRow:
class CSVRow(BaseCSVRow):
"""A row in the CSV balance sheet."""
"""A row in the CSV."""
def __init__(self):
"""Constructs a row in the CSV balance sheet."""
"""Constructs a row in the CSV."""
self.asset_title: str | None = None
"""The title of the asset."""
self.asset_amount: Decimal | None = None