fix: Allow connections to save file output (#9386)

* fix: Allow connections to save file output

* Update save_file.py

* [autofix.ci] apply automated fixes

* Change name of output

---------

Co-authored-by: Edwin Jose <edwin.jose@datastax.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Eric Hare 2025-08-14 14:19:42 -07:00 committed by GitHub
commit 226c71bb7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -53,7 +53,7 @@ class SaveToFileComponent(Component):
),
]
outputs = [Output(display_name="File Path", name="result", method="save_to_file")]
outputs = [Output(display_name="File Path", name="message", method="save_to_file")]
async def save_to_file(self) -> Message:
"""Save the input to a file and upload it, returning a confirmation message."""

File diff suppressed because one or more lines are too long