7 lines
121 B
Python
7 lines
121 B
Python
|
|
|
|
def tool_dummy(a: int, b: str):
|
|
return "result_%d_%s" % (a, b)
|
|
|
|
def tool_dummy2(text: str):
|
|
return text.upper() |