[Answered ]-NoneType object is not callable when adding saved FK

2👍

You are trying to assign things to the class, not the instance of the class. Try:

campaign = Campaign()
campaign.participant_reward = single_voucher_reward
campaign.save()

or

campaign = Campaign(participant_reward = single_voucher_reward)
campaign.save()

Leave a comment