File size: 247 Bytes
6f55e39
ad7e72a
 
 
 
6f55e39
ad7e72a
1
2
3
4
5
6
7
8
class Pipeline:
    def __init__(self, prefix: str = "Good morning,", postfix: str = '!'):
        self.prefix = prefix
        self.postfix = postfix

    def __call__(self, inputs):
        return f"{self.prefix} {inputs.title()}{self.postfix}"