(self, other)
| 249 | return 'BlobReference("{}")'.format(self._name) |
| 250 | |
| 251 | def __add__(self, other): |
| 252 | if not isinstance(other, str): |
| 253 | raise RuntimeError('Cannot add BlobReference to a non-string.') |
| 254 | return BlobReference(self._name + other, self._from_net) |
| 255 | |
| 256 | def __radd__(self, other): |
| 257 | if not isinstance(other, str): |
nothing calls this directly
no test coverage detected