You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
271 B
19 lines
271 B
|
|
|
|
def tool_dummy(a: int, b: str):
|
|
"""
|
|
tool_dummy
|
|
Args:
|
|
a: how much
|
|
b: how text?
|
|
"""
|
|
return "result_%d_%s" % (a, b)
|
|
|
|
|
|
def tool_dummy2(text: str):
|
|
"""
|
|
tool_dummy2
|
|
Args:
|
|
text: only text?
|
|
"""
|
|
return text.upper()
|