With prefect v1, we recently switched one of the f...
# prefect-community
j
With prefect v1, we recently switched one of the flows to use
stored_as_as_script
when initializing storage. But when running the flow from the web UI, it now says
Failed to load and execute flow run: ValueError('No flows found in file.')
This is the storage instantiation:
Copy code
storage=S3(
    bucket='some-bucket',
    stored_as_script=True,
    local_script_path='some-path.py',
)