Python Code Challenge

189 - What is wrong with the code below?
def convert_to_fahrenheit(celsius):
    return 9/5 * {celsius} + 32

print(convert_to_fahrenheit(0))