Ejemplo n.º 1
0
def supergreeting_wrapper(name):
    return (greet.supergreeting(name))
Ejemplo n.º 2
0
def supergreeting_wrapper(name):
    """ imports supergreeting from file greet.py in current directory """
    wrapped_supergreeting = greet.supergreeting(name)
    return wrapped_supergreeting
Ejemplo n.º 3
0
def supergreeting_wrapper(name: str):
    greeting = supergreeting(name)
    return greeting
Ejemplo n.º 4
0
def supergreeting_wrapper(name):
    import greet

    return greet.supergreeting(name)
Ejemplo n.º 5
0
def supergreeting_wrapper(x):
    return greet.supergreeting(x)