diff --git a/openhtf/core/phase_descriptor.py b/openhtf/core/phase_descriptor.py index 7327c1a9f..b583dc9b1 100644 --- a/openhtf/core/phase_descriptor.py +++ b/openhtf/core/phase_descriptor.py @@ -275,6 +275,10 @@ def name(self) -> Text: name = inflection.camelize(name) return name + @name.setter + def name(self, value): + self.options.name = value + @property def doc(self) -> Optional[Text]: return self.func.__doc__