dani / tools.py
joacota2's picture
daniprueba
7589db1
raw
history blame contribute delete
167 Bytes
def pipeline_dani(query:str = 'hola',) -> str:
"""
This is a pipeline that receives a string and returns it in uppercase.
"""
return query.upper()