Skip to content

Commit cdd869a

Browse files
committed
Bulk generator: Autoformat.
1 parent 3ddca32 commit cdd869a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

misc/scripts/models-as-data/bulk_generate_mad.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,19 @@ class Project(TypedDict):
4545
with_sinks: NotRequired[bool]
4646
with_summaries: NotRequired[bool]
4747

48+
4849
def shouldGenerateSinks(project: Project) -> bool:
4950
return project.get("with_sinks", False)
5051

52+
5153
def shouldGenerateSources(project: Project) -> bool:
5254
return project.get("with_sources", False)
5355

56+
5457
def shouldGenerateSummaries(project: Project) -> bool:
5558
return project.get("with_summaries", False)
5659

60+
5761
def clone_project(project: Project) -> str:
5862
"""
5963
Shallow clone a project into the build directory.

0 commit comments

Comments
 (0)