From 4f616237b44bb17a99726a4dfdd14b43396780c2 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Mon, 14 Aug 2023 13:41:01 +0100 Subject: [PATCH] remove newlines --- python/basix/ufl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/basix/ufl.py b/python/basix/ufl.py index 5a99548bd..f98a1c767 100644 --- a/python/basix/ufl.py +++ b/python/basix/ufl.py @@ -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)]