We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dcf95f commit a29fb63Copy full SHA for a29fb63
ufl/sobolevspace.py
@@ -111,9 +111,9 @@ def __init__(self, orders):
111
the position denotes in what spatial variable the
112
smoothness requirement is enforced.
113
"""
114
- assert all(
115
- isinstance(x, int) or isinf(x) for x in orders
116
- ), "Order must be an integer or infinity."
+ assert all(isinstance(x, int) or isinf(x) for x in orders), (
+ "Order must be an integer or infinity."
+ )
117
name = "DirectionalH"
118
parents = [L2]
119
super(DirectionalSobolevSpace, self).__init__(name, parents)
0 commit comments