MCPcopy Create free account
hub / github.com/bhowiebkr/PyFlowGraph / add_data_pin

Method add_data_pin

src/core/node.py:754–756  ·  view source on GitHub ↗

Add a data pin for value transfer.

(self, name, direction, pin_type_str)

Source from the content-addressed store, hash-verified

752 return self.add_pin(name, direction, "exec", "execution")
753
754 def add_data_pin(self, name, direction, pin_type_str):
755 """Add a data pin for value transfer."""
756 return self.add_pin(name, direction, pin_type_str, "data")
757
758 def remove_pin(self, pin_to_remove):
759 # Remove connections first

Callers 1

_update_data_pinsMethod · 0.95

Calls 1

add_pinMethod · 0.95

Tested by

no test coverage detected