Prefect_shell returning a NotImplementedError

Hi everyone,

I’ve been running into an NotImplementedError when using the prefect_shell collection.
It was working previously but for some reason when I tried doing it again it’s not working. I’ve already used pip install -U prefect-shell and double checked that its installed correctly in the venv Lib

But when running a simple test I get the following “Not Implemented” error:

The source code can be found below:

from prefect import flow
from prefect_shell import shell_run_command

@flow
def example_shell_run_command_flow():
return shell_run_command(command=“ls .”, return_all=True)

if name == “main”:
print(“test”)
example_shell_run_command_flow()

error message from the cloud UI is attached.

Any help would be appreciated. Thanks!