MCPcopy Create free account
hub / github.com/vastsa/FileCodeBox / __setattr__

Method __setattr__

core/settings.py:96–100  ·  view source on GitHub ↗
(self, key, value)

Source from the content-addressed store, hash-verified

94 )
95
96 def __setattr__(self, key, value):
97 if key in ["default_config", "user_config"]:
98 super().__setattr__(key, value)
99 else:
100 self.user_config[key] = value
101
102 def items(self):
103 return {**self.default_config, **self.user_config}.items()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected