Skip to content

Commit 12d78e5

Browse files
committed
remove fuse dependence
1 parent 3115dd8 commit 12d78e5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ufl/cell.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -479,9 +479,7 @@ def as_cell(cell: AbstractCell | str | tuple[AbstractCell, ...]) -> AbstractCell
479479
if isinstance(cell, AbstractCell):
480480
return cell
481481
elif isinstance(cell, str):
482-
from fuse import constructCellComplex
483-
return constructCellComplex(cell)
484-
# return Cell(cell)
482+
return Cell(cell)
485483
elif isinstance(cell, tuple):
486484
return TensorProductCell(*cell)
487485
else:

0 commit comments

Comments
 (0)