My stupid hack to keep things moving
@task
def write_node_state_s3fs(flpth_to_get, flpth_to_write):
    s3 = s3fs.S3FileSystem(anon=False)
    with s3.open(flpth_to_write, 'w') as f:
        f.write(flpth_to_get)
    
    return


node_flow.visualize(flow_state=flow_state, filename=filename)

flpth_to_write = f"{node_artifact_dir}{filename}.pdf"
write_node_state_s3fs.run(flpth_to_get=filename, flpth_to_write=flpth_to_write)