(self, context: Context)
| 67 | yield self.__export_blob(val, context) |
| 68 | |
| 69 | def node_Binary(self, context: Context): |
| 70 | if len(context.node.value) >= self.__min_blob_size and self._no_blobs is False: |
| 71 | yield self.__export_blob(context.node.value, context) |
| 72 | |
| 73 | def __export_blob(self, blob: Union[bytes, str], context: Context) -> ScanLocation: |
| 74 | tmp_dir = tempfile.mkdtemp(prefix="aura_pkg__sandbox_blob_") |
nothing calls this directly
no test coverage detected