Merge pull request #859 from SuanmoSuanyangTechnology/hotfix/v0.2.10

Hotfix/v0.2.10
This commit is contained in:
Ke Sun
2026-04-10 18:29:06 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ logger = logging.getLogger(__name__)
# Example: # Example:
# "Hello {{user.name}}!" -> # "Hello {{user.name}}!" ->
# ["Hello ", "{{user.name}}", "!"] # ["Hello ", "{{user.name}}", "!"]
_OUTPUT_PATTERN = re.compile(r'\{\{.*?}}|[^{}]+') _OUTPUT_PATTERN = re.compile(r'\{\{.*?}}|[^{]+|{')
# Strict variable format: {{ node_id.field_name }} # Strict variable format: {{ node_id.field_name }}
_VARIABLE_PATTERN = re.compile(r'\{\{\s*[a-zA-Z0-9_]+\.[a-zA-Z0-9_]+\s*}}') _VARIABLE_PATTERN = re.compile(r'\{\{\s*[a-zA-Z0-9_]+\.[a-zA-Z0-9_]+\s*}}')

View File

@@ -55,9 +55,9 @@ class CycleGraphNode(BaseNode):
if config.output_type in [ if config.output_type in [
VariableType.ARRAY_FILE, VariableType.ARRAY_FILE,
VariableType.ARRAY_STRING, VariableType.ARRAY_STRING,
VariableType.NUMBER, VariableType.ARRAY_NUMBER,
VariableType.ARRAY_OBJECT, VariableType.ARRAY_OBJECT,
VariableType.BOOLEAN VariableType.ARRAY_BOOLEAN
]: ]:
if config.flatten: if config.flatten:
outputs['output'] = config.output_type outputs['output'] = config.output_type