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

    return greet.supergreeting(name)
Exemple #5
0
def supergreeting_wrapper(x):
    return greet.supergreeting(x)