Error in deep learning course "tasks events planning"

I noticed this couple of times on the chapter on “tasks events planning”. Following is the exception.

Exception in thread Thread-9 (_execute):
Traceback (most recent call last):
File “/usr/local/lib/python3.11/threading.py”, line 1045, in _bootstrap_inner
self.run()
File “/usr/local/lib/python3.11/site-packages/ipykernel/ipkernel.py”, line 766, in run_closure
_threading_Thread_run(self)
File “/usr/local/lib/python3.11/threading.py”, line 982, in run
self._target(*self._args, **self._kwargs)
File “/usr/local/lib/python3.11/site-packages/crewai/task.py”, line 182, in _execute
result = agent.execute_task(
^^^^^^^^^^^^^^^^^^^
File “/usr/local/lib/python3.11/site-packages/crewai/agent.py”, line 221, in execute_task
result = self.agent_executor.invoke(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/local/lib/python3.11/site-packages/langchain/chains/base.py”, line 163, in invoke
raise e
File “/usr/local/lib/python3.11/site-packages/langchain/chains/base.py”, line 153, in invoke
self._call(inputs, run_manager=run_manager)
File “/usr/local/lib/python3.11/site-packages/crewai/agents/executor.py”, line 124, in _call
next_step_output = self._take_next_step(
^^^^^^^^^^^^^^^^^^^^^
File “/usr/local/lib/python3.11/site-packages/langchain/agents/agent.py”, line 1138, in _take_next_step
[
File “/usr/local/lib/python3.11/site-packages/langchain/agents/agent.py”, line 1138, in
[
File “/usr/local/lib/python3.11/site-packages/crewai/agents/executor.py”, line 245, in _iter_next_step
human_feedback = self._ask_human_input(output.return_values[“output”])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/local/lib/python3.11/site-packages/crewai/agents/executor.py”, line 300, in _ask_human_input
return input(
^^^^^^
EOFError: EOF when reading a line

I’m new also here but i remove the async_execution and it works for me.

logistics_task = Task(
description = "Coordinate catering and equipment for an event "
“with {expected_participants} participants on {tentative_date}.”,
expected_output = "Confirmation of all logistics arrangments "
“including catering and equipment setup.”,
human_input = True,
agent = logistics_manager
)