From e2c5fc0a219d21df38947da57fdc42a3c993df49 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Fri, 19 Dec 2025 15:46:04 -0800 Subject: [PATCH] Add simple docstring --- modules/options.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/options.py b/modules/options.py index 09328a428..2d0c10490 100644 --- a/modules/options.py +++ b/modules/options.py @@ -7,6 +7,7 @@ from installer import log if TYPE_CHECKING: from collections.abc import Callable def options_section(section_identifier: tuple[str, str], options_dict: dict[str, OptionInfo | LegacyOption]): + """Set the `section` value for all OptionInfo/LegacyOption items""" for v in options_dict.values(): v.section = section_identifier return options_dict