def process_func()

in bicep-typeless.py [0:0]


def process_func(line: str) -> str:
    toks = line.split()
    for i in range(len(toks)):
        if toks[i].endswith("_t"):
            toks[i] = "object"
        if toks[i].endswith("_t)"):
            toks[i] = "object)"
    return " ".join(toks) + "\n"