MCPcopy Create free account
hub / github.com/FastLED/FastLED / install_theme

Function install_theme

ci/docs.py:128–137  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

126
127
128def install_theme() -> Path:
129 print("Installing Doxygen Awesome Theme...")
130 theme_path = DOCS_ROOT / "doxygen-awesome-css"
131 if theme_path.exists():
132 return theme_path
133 run(
134 f"git clone --depth 1 -b v{DOXYGEN_AWESOME_VERSION} {DOXYGEN_CSS_REPO}",
135 cwd=str(DOCS_ROOT),
136 )
137 return theme_path
138
139
140def generate_docs(doxygen_bin: Path) -> None:

Callers

nothing calls this directly

Calls 2

runFunction · 0.70
printFunction · 0.50

Tested by

no test coverage detected