We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42981b7 commit 35b2700Copy full SHA for 35b2700
custom_routes.py
@@ -96,7 +96,7 @@ def schema_validator(prompt):
96
schema = node_cls.validate(**node_info["inputs"])
97
# validate schema
98
if not is_valid_variable_name(schema["title"]):
99
- raise ValueError(f'{schema["title"]} is not a valid variable name!')
+ raise ValueError(f'`{schema["title"]}` is not a valid variable name!')
100
else:
101
raise NotImplementedError("the validate is not implemented")
102
schemas[mode][node_id] = schema
0 commit comments