I think the line that says Server type: <client error>, is problematic, but I am not sure how I can fix that.
Now when I run a simple workflow such as:
Copy code
from prefect import task, flow
@task
def a():
return 1+1
@flow
def flow1():
print(a())
if __name__ == '__main__':
flow1()