Links
AI / Agents
gdtest-no-darkmode
Tests dark_mode_toggle: false config.
Tests dark_mode_toggle: false. The dark mode toggle switch should NOT appear in the navbar. Two functions (light_func, bright_func).
Source files
gdtest_no_darkmode/
__init__.py
"""Package testing dark_mode_toggle false config."""
__version__ = "0.1.0"
__all__ = ["light_func", "bright_func"]
def light_func(x: int) -> int:
"""
Apply a light transformation to the input.
Parameters
----------
x
The input integer value.
Returns
-------
int
The transformed value.
"""
return x + 1
def bright_func(x: int) -> int:
"""
Apply a bright transformation to the input.
Parameters
----------
x
The input integer value.
Returns
-------
int
The transformed value.
"""
return x * 2README.md
# gdtest-no-darkmode Tests dark_mode_toggle: false config.
great-docs.yml
dark_mode_toggle: false