35 bytes from 192.168.2.100: ping_seq=1 ttl=128 time=0.026 ms
File "/opt/python/discord_bot/controller.py", line 980, in process_queue
yield from taskRunner.trigger(ctx)
File "/opt/python/discord_bot/assistant.py", line 370, in execute_task
yield from helperModule(*ctx.info)
File "/opt/python/discord_bot/decorator.py", line 82, in wrapper_func
raise TaskError(err) from err
discord_bot.errors.TaskError: Command raised an exception: AttributeError: 'SubProcessExecutor' object has no attribute 'communicate_result'
hey, looks lik a typo. maybe you meant to call ‘communicate’ not ‘communicate_result’? check your class def and ensure the attribute exists. could be a naming mismatch
The error seems to indicate that the method communication method was incorrectly referenced. In a similar project, I ran into an issue where a mistyped method name led to an AttributeError. The solution for me was to verify the method signatures defined in the SubProcessExecutor class and ensure that any asynchronous operations or callbacks were properly implemented. Reviewing your class definition might be helpful, especially if the intended function was named differently. Checking your recent changes or consulting the library version documentation could offer additional insights.