Skip to content

Commit 1924690

Browse files
committed
Ruff formatting
1 parent c3e4f81 commit 1924690

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

python/dolfinx/fem/forms.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,10 @@ def _form(form):
369369
# Extract subdomain ids from ufcx_form
370370
subdomain_ids = {_ufl_to_dolfinx_domain[type]: [] for type in sd.get(domain).keys()}
371371
integral_offsets = [ufcx_form.form_integral_offsets[i] for i in range(5)]
372-
integral_types = [_ufl_to_dolfinx_domain[type] for type in ["cell", "exterior_facet", "interior_facet", "vertex"]]
372+
integral_types = [
373+
_ufl_to_dolfinx_domain[type]
374+
for type in ["cell", "exterior_facet", "interior_facet", "vertex"]
375+
]
373376
for i in range(len(integral_offsets) - 1):
374377
integral_type = integral_types[i]
375378
for j in range(integral_offsets[i], integral_offsets[i + 1]):

0 commit comments

Comments
 (0)