Skip to content

Commit a29fb63

Browse files
committed
k
1 parent 8dcf95f commit a29fb63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ufl/sobolevspace.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ def __init__(self, orders):
111111
the position denotes in what spatial variable the
112112
smoothness requirement is enforced.
113113
"""
114-
assert all(
115-
isinstance(x, int) or isinf(x) for x in orders
116-
), "Order must be an integer or infinity."
114+
assert all(isinstance(x, int) or isinf(x) for x in orders), (
115+
"Order must be an integer or infinity."
116+
)
117117
name = "DirectionalH"
118118
parents = [L2]
119119
super(DirectionalSobolevSpace, self).__init__(name, parents)

0 commit comments

Comments
 (0)