* 文本输入节点主函数 * @param {str} value - 输入的字符串 * @return {tuple} 输出字符串
(self, value)
| 20 | CATEGORY = "PDuse/Text" |
| 21 | |
| 22 | def execute(self, value): |
| 23 | """ |
| 24 | * 文本输入节点主函数 |
| 25 | * @param {str} value - 输入的字符串 |
| 26 | * @return {tuple} 输出字符串 |
| 27 | """ |
| 28 | return (value,) |
| 29 | |
| 30 | class PDStringConcate: |
| 31 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected