Issues with Rasa Forms

Hello guys i’m facing issues with Rasa Forms, i’m using Rasa 1.10.14, here the error message i’m getting :

Failed to extract slot firstN with action form_info
Exception occurred while handling uri: 'http://localhost:5055/webhook'
Traceback (most recent call last):
  File "/home/ahmedmzoughi/.local/lib/python3.7/site-packages/sanic/app.py", line 976, in handle_request
    response = await response
  File "/home/ahmedmzoughi/.local/lib/python3.7/site-packages/rasa_sdk/endpoint.py", line 102, in webhook
    result = await executor.run(action_call)
  File "/home/ahmedmzoughi/.local/lib/python3.7/site-packages/rasa_sdk/executor.py", line 386, in run
    events = action(dispatcher, tracker, domain)
  File "/home/ahmedmzoughi/Desktop/projects/rasaBot/actions.py", line 2464, in run
    DataUpdate(tracker.get_slot("firstN"), tracker.get_slot("lastN"),tracker.get_slot("feedback"))
NameError: name 'DataUpdate' is not defined

Hi Mzoughi,

You’re getting a python error. You’ve referred to a function, DataUpdate, that is not defined.

Greg