(self, data)
| 215 | class Item: |
| 216 | """ A dummy `Registry` item object for testing. """ |
| 217 | def __init__(self, data): |
| 218 | self.data = data |
| 219 | |
| 220 | def __repr__(self): |
| 221 | return repr(self.data) |
nothing calls this directly
no outgoing calls
no test coverage detected