Cannot deactivate formaction

my story is as below:

Generated Story -60119732355795877

  • airbus_myfin{“kpimeasure”: “fcf”}
    • slot{“kpimeasure”: “fcf”}
    • airbus_form
    • form{“name”: “airbus_form”}
    • slot{“kpimeasure”: “fcf”}
    • slot{“requested_slot”: “measure”}
  • form: airbus_myfin1{“measure”: “actuals”}
    • slot{“measure”: “actuals”}
    • form: airbus_form
    • slot{“measure”: “actuals”}
    • slot{“requested_slot”: “group”}
  • form: airbus_myfin2{“group”: “division”}
    • slot{“group”: “division”}
    • form: airbus_form
    • action_deactivate_form
    • form{“name”: null}
    • slot{“requested_slot”: null}
    • utter_slots_values
    • action_slot_reset
    • reset_slots

i am getting 3 entities (kpimeasure,measure and group) in the form, and after that i am deactivating the form using “action_deactivate_form” and resetting the slots using (action_slot_reset)

code for action_slot_reset:

class ActionSlotReset(Action): def name(self): return ‘action_slot_reset’ def run(self, dispatcher, tracker, domain): return[AllSlotsReset()]

even though i deactivate the form , when i ask any question after the story completion , form is re activated and still expecting value for group slot and even though the slots are resetted , they are not resetting.

please help on this, thanks in advance