(self, data)
| 106 | class ExternalDataInfo(object): |
| 107 | |
| 108 | def __init__(self, data): |
| 109 | assert is_external(data) |
| 110 | self._data = data |
| 111 | |
| 112 | def __str__(self): |
| 113 | type_str = "File" if self.is_file else "Sandbox resource" |
nothing calls this directly
no test coverage detected