How do you return the result of a completed celery task and store the data in variables?

Solution
import tasks

marketplace = 'cheddar_block_games'

result = tasks.scope.delay(marketplace)
price_check, image = result.get()