(self)
| 121 | self.quiet = kwargs.pop('quiet', 0) |
| 122 | |
| 123 | def __str__(self): |
| 124 | defaults = dict(type(self).__dict__) |
| 125 | actual = dict(defaults) |
| 126 | actual.update(self.__dict__) |
| 127 | actual['config'] = self.config |
| 128 | return repr_dict({ |
| 129 | key: value |
| 130 | for key, value in actual.items() |
| 131 | if not key.startswith('_') |
| 132 | }) |
| 133 | |
| 134 | def __repr__(self): |
| 135 | return f'<{type(self).__name__} {self}>' |