Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
@celery.task(name='formulas.update_formula') # NOQA
def update_formula(formula_id, git_password):
try:
formula = Formula.objects.get(pk=formula_id)
formula.set_status(Formula.IMPORTING, 'Updating formula.')
repodir = clone_to_temp(formula, git_password)
formula_title, formula_description, root_path, components = validate_specfile(formula, repodir)
old_components = formula.components.all()
# Check for added or changed components
added_components = []
changed_components = []
removed_components = []
for component in components:
# Check to see if the component was already in the formula
exists = False