(self)
| 456 | return copy |
| 457 | |
| 458 | def __repr__(self): |
| 459 | return "Skill(ID={}, name={}) at {}".format( |
| 460 | self.item.ID, self.item.name, hex(id(self)) |
| 461 | ) |
| 462 | |
| 463 | |
| 464 | class ReadOnlyException(Exception): |
nothing calls this directly
no outgoing calls
no test coverage detected