Skip to content

Commit

Permalink
remove newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Aug 14, 2023
1 parent 1b7bc2f commit 4f61623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/basix/ufl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ def __init__(self, cell: _basix.CellType, value_shape: _typing.Tuple[int, ...],
"""Initialise the element."""
self._points = points
self._weights = weights
repr = f"QuadratureElement({cell.name}, {points!r}, {weights!r}, {mapname})"
repr = f"QuadratureElement({cell.name}, {points!r}, {weights!r}, {mapname})".replace("\n", "")
self._cell_type = cell
self._entity_counts = [len(i) for i in _basix.topology(cell)]

Expand Down

0 comments on commit 4f61623

Please sign in to comment.