Skip to content

Commit

Permalink
Fix annoying flake8 error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Sandve Alnæs committed Oct 19, 2016
1 parent 0b2d04f commit f5ac78d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ufl/algorithms/apply_restrictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ def facet_normal(self, o):
cell_facet_jacobian_inverse = _require_restriction # ...
cell_edge_vectors = _require_restriction # ...

reference_cell_volume = _ignore_restriction # FIXME: needs changing for mixed cell meshes
reference_facet_volume = _ignore_restriction # FIXME: needs changing for mixed cell meshes
reference_cell_volume = _ignore_restriction # FIXME: needs changing for mixed cell meshes
reference_facet_volume = _ignore_restriction # FIXME: needs changing for mixed cell meshes

cell_normal = _require_restriction # Property of cell

Expand All @@ -187,9 +187,9 @@ def facet_normal(self, o):
# cell_midpoint = _require_restriction # Depends on cell
# facet_midpoint = _default_restricted # Depends on cell only to get to the facet

cell_volume = _require_restriction # Property of cell
circumradius = _require_restriction # Property of cell
# cell_surface_area = _require_restriction # Property of cell
cell_volume = _require_restriction # Property of cell
circumradius = _require_restriction # Property of cell
# cell_surface_area = _require_restriction # Property of cell

facet_area = _default_restricted # Depends on cell only to get to the facet
# facet_diameter = _default_restricted # Depends on cell only to get to the facet
Expand Down

0 comments on commit f5ac78d

Please sign in to comment.