(self, key: str, value: Any, recursive: bool = True)
| 174 | return self.data.get(key, None) |
| 175 | |
| 176 | def set_data(self, key: str, value: Any, recursive: bool = True): |
| 177 | # recursive is not used now, prepared for context hierarchy |
| 178 | self.data[key] = value |
| 179 | |
| 180 | def get_output_data(self, key: str, recursive: bool = True): |
| 181 | # recursive is not used now, prepared for context hierarchy |
no outgoing calls