Return the name of config with all the modifications applied.
(self)
| 33 | |
| 34 | @property |
| 35 | def name(self): |
| 36 | """Return the name of config with all the modifications applied.""" |
| 37 | if self.modifications: |
| 38 | return "{0} ({1})".format(self._name, |
| 39 | ", ".join(self.modifications)) |
| 40 | else: |
| 41 | return self._name |
| 42 | |
| 43 | @name.setter |
| 44 | def name(self, value): |
nothing calls this directly
no outgoing calls
no test coverage detected