Get information as a key:value dictionary where values are strings.
(self)
| 39 | self.info[key] = value |
| 40 | |
| 41 | def get_infos(self): |
| 42 | """ |
| 43 | Get information as a key:value dictionary where values are strings. |
| 44 | """ |
| 45 | return {key: str(value) for key, value in self.info.items()} |
| 46 | |
| 47 | |
| 48 | def copy_attributes(info_add, obj, name_fmt, attributes, *, formatter=None): |