I'm trying to understand a function in python which requires a single parameter. But this parameter is followed by a comma. Ex:
def api_integration(request,):
...
Is that an error or does it make syntactical sense?
I'm trying to understand a function in python which requires a single parameter. But this parameter is followed by a comma. Ex:
def api_integration(request,):
...
Is that an error or does it make syntactical sense?