MCPcopy Create free account
hub / github.com/mozilla/cipherscan / name

Method name

cscan/config.py:35–41  ·  view source on GitHub ↗

Return the name of config with all the modifications applied.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected