I have the following code:
def render(templateName, **data):
alphabet = "abcdefghijklmnopqrstuvwxyz"
arg = {}
arg['alphabet'] = alphabet
temp = {**arg, **data} #This line has a syntax error!
return render_template(templateName, **temp)
This function is working fine on my home pc. But running it on the server i get a syntax error.
Can someone help me please?