Fix outdated docstring

This commit is contained in:
Veronica Berglyd Olsen
2025-10-22 22:07:50 +02:00
parent 9640d95cef
commit 3ceaadd0c0
+1 -1
View File
@@ -32,7 +32,7 @@ SETUP_DIR = ROOT_DIR / "setup"
def extractReqs(groups: list[str]) -> list[str]: def extractReqs(groups: list[str]) -> list[str]:
"""Generate requirements.txt file from pyproject.toml.""" """Extract dependency groups from pyproject.toml."""
data = tomllib.loads((ROOT_DIR / "pyproject.toml").read_text(encoding="utf-8")) data = tomllib.loads((ROOT_DIR / "pyproject.toml").read_text(encoding="utf-8"))
reqs = [] reqs = []
if "app" in groups or "all" in groups: if "app" in groups or "all" in groups: