Skip to content

Commit 025de4e

Browse files
committed
Fix flake8
1 parent 881b065 commit 025de4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

djangocms_frontend/component_pool.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ def scan_templates_for_component_declaration(
8888
field_context = self.get_field_context()
8989
for module, template_name in templates:
9090
# Create a new context for each template
91-
context = SekizaiContext({"_cms_components": defaultdict(list), "forms": fields, "instance": {}, **field_context})
91+
context = SekizaiContext(
92+
{"_cms_components": defaultdict(list), "forms": fields, "instance": {}, **field_context}
93+
)
9294
try:
9395
template = get_template(template_name)
9496
template.template.render(context)

0 commit comments

Comments
 (0)