Skip to content

Commit

Permalink
Merged in mapdes/ufl/fix-upstream (pull request #60)
Browse files Browse the repository at this point in the history
Add missing comma
  • Loading branch information
Martin Sandve Alnæs committed Oct 13, 2016
2 parents 142304c + 9fc3124 commit 12b2a5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ufl/finiteelement/hdivcurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
class HDivElement(FiniteElementBase):
"""A div-conforming version of an outer product element, assuming
this makes mathematical sense."""
__slots__ = as_native_strings(("_element"))
__slots__ = as_native_strings(("_element",))

def __init__(self, element):
self._element = element
Expand Down Expand Up @@ -60,7 +60,7 @@ def shortstr(self):
class HCurlElement(FiniteElementBase):
"""A curl-conforming version of an outer product element, assuming
this makes mathematical sense."""
__slots__ = as_native_strings(("_element"))
__slots__ = as_native_strings(("_element",))

def __init__(self, element):
self._element = element
Expand Down

0 comments on commit 12b2a5d

Please sign in to comment.