Bulk generator: Autoformat.

This commit is contained in:
Mathias Vorreiter Pedersen
2025-05-30 12:49:12 +01:00
parent 3ddca32705
commit cdd869a970

View File

@@ -45,15 +45,19 @@ class Project(TypedDict):
with_sinks: NotRequired[bool]
with_summaries: NotRequired[bool]
def shouldGenerateSinks(project: Project) -> bool:
return project.get("with_sinks", False)
def shouldGenerateSources(project: Project) -> bool:
return project.get("with_sources", False)
def shouldGenerateSummaries(project: Project) -> bool:
return project.get("with_summaries", False)
def clone_project(project: Project) -> str:
"""
Shallow clone a project into the build directory.