tools: Missed this when specifying tools in the yaml file.
This commit is contained in:
parent
44abbfe53d
commit
0d204d2a8f
2 changed files with 2 additions and 2 deletions
|
|
@ -639,7 +639,7 @@ with open(tools_yaml_path) as tools_yaml_file:
|
|||
tools_yaml = yaml.load(tools_yaml_file.read())
|
||||
for tool_name, tool_yaml in tools_yaml.items():
|
||||
tool_func = make_tool_function(**tool_yaml)
|
||||
tool_func.__name__ = tool_name
|
||||
tool_func.__name__ = tool_func.__qualname__ = tool_name
|
||||
globals()[tool_name] = tool_func
|
||||
|
||||
#############################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue