File size: 167 Bytes
7589db1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

def pipeline_dani(query:str = 'hola',) -> str:
    """
    This is a pipeline that receives a string and returns it in uppercase.
    """
    return query.upper()