From 7fb9e2f0a1e76a48172688c43b0c1f2b7153bcfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Fri, 10 Mar 2023 09:16:32 +0800 Subject: [PATCH] Added missing documentation to the OptionLink data model in the "accounting.report.utils.option_link" module. --- src/accounting/report/utils/option_link.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/accounting/report/utils/option_link.py b/src/accounting/report/utils/option_link.py index 90da8c0..4652407 100644 --- a/src/accounting/report/utils/option_link.py +++ b/src/accounting/report/utils/option_link.py @@ -27,10 +27,15 @@ class OptionLink: """Constructs an option link. :param title: The title. - :param url: The URI. + :param url: The URL. :param is_active: True if active, or False otherwise + :param fa_icon: The font-awesome icon, if any. """ self.title: str = title + """The title.""" self.url: str = url + """The URL.""" self.is_active: bool = is_active + """True if active, or False otherwise.""" self.fa_icon: str | None = fa_icon + """The font-awesome icon, if any."""