[Fixed]-(Django) save(*args, **kwargs) vs. save(**kwargs)

1👍

✅

save(self, *args, **kwargs) is the recommended way to go since it is the signature you can find in the django source code

Edit:
I am assuming you are talking about the save() method in case of django models

Leave a comment