Add an item to a set
(self, obj: t.Any)
| 167 | |
| 168 | # set methods |
| 169 | def add(self, obj: t.Any) -> None: |
| 170 | """Add an item to a set""" |
| 171 | self.update({obj}) |
| 172 | |
| 173 | def get_value(self, initial: t.Any) -> t.Any: |
| 174 | """construct the value from the initial one |
no test coverage detected