MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / node_Binary

Method node_Binary

aura/analyzers/data_finder.py:69–71  ·  view source on GitHub ↗
(self, context: Context)

Source from the content-addressed store, hash-verified

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_")

Callers

nothing calls this directly

Calls 1

__export_blobMethod · 0.95

Tested by

no test coverage detected