Skip to content
Snippets Groups Projects
Commit 69b5c54c authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

ENH: Mesh name can be updated

parent 34edfae0
No related branches found
No related tags found
No related merge requests found
...@@ -241,6 +241,12 @@ class Mesh(notifier.Notifier, meta.Meta): ...@@ -241,6 +241,12 @@ class Mesh(notifier.Notifier, meta.Meta):
return self.__name return self.__name
@name.setter
def name(self, name):
"""Set the name of this ``Mesh``. """
self.__name = name
@property @property
def dataSource(self): def dataSource(self):
"""Returns the data source of this ``Mesh``. """ """Returns the data source of this ``Mesh``. """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment