Skip to content

Commit fb950c1

Browse files
committed
make format
1 parent 756f9ba commit fb950c1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/mxmake/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ def create_config(prompt: bool, preseeds: dict[str, typing.Any] | None):
253253
elif preseeds and "mx-ini" in preseeds and not (target_folder / "mx.ini").exists():
254254
sys.stdout.write("Generate mx configuration file\n")
255255
factory = template.lookup("mx.ini")
256-
mx_ini_template = factory(target_folder, domains, get_template_environment(), domain_settings)
256+
mx_ini_template = factory(
257+
target_folder, domains, get_template_environment(), domain_settings
258+
)
257259
mx_ini_template.write()
258260
else:
259261
sys.stdout.write(

src/mxmake/templates.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,8 @@ def template_variables(self) -> dict[str, typing.Any]:
361361
template = {
362362
"name": "plone-site",
363363
"settings": {
364-
"distribution": "volto", "extension_ids": "plone.volto:default"
364+
"distribution": "volto",
365+
"extension_ids": "plone.volto:default",
365366
},
366367
}
367368
mxmake_templates.append(template)

0 commit comments

Comments
 (0)