def month_to_quarter()

in foundation_security_advisories/update_hof.py [0:0]


def month_to_quarter(month):
    if int(month) <= 3:
        return str(1)
    elif int(month) <= 6:
        return str(2)
    elif int(month) <= 9:
        return str(3)
    else:
        return str(4)