Return full copy of object
(self)
| 152 | self.set_active_scheme(default_scheme) |
| 153 | |
| 154 | def copy(self): |
| 155 | """Return full copy of object""" |
| 156 | return ColorSchemeTable(self.values(),self.active_scheme_name) |
| 157 | |
| 158 | def add_scheme(self,new_scheme): |
| 159 | """Add a new color scheme to the table.""" |
nothing calls this directly
no test coverage detected