(self, mapping)
| 411 | return join(licenses_data_dir, f'{self.key}.LICENSE') |
| 412 | |
| 413 | def update(self, mapping): |
| 414 | for k, v in mapping.items(): |
| 415 | setattr(self, k, v) |
| 416 | |
| 417 | def __copy__(self): |
| 418 | oldl = self.to_dict() |
no outgoing calls
no test coverage detected