File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
version : 0.3.5
34
34
args : ' format --check --config ./ruff.toml'
35
- src : ${{ steps.changed-py-files.outputs.files }}
35
+ src : ${{ steps.changed-py-files.outputs.all_changed_files }}
36
36
37
37
ruff-isort :
38
38
needs : [ ]
51
51
with :
52
52
version : 0.3.5
53
53
args : ' --select I --config ./ruff.toml'
54
- src : ${{ steps.changed-py-files.outputs.files }}
54
+ src : ${{ steps.changed-py-files.outputs.all_changed_files }}
55
55
56
56
ruff :
57
57
needs : []
70
70
with :
71
71
version : 0.3.5
72
72
args : ' --config ./ruff.toml'
73
- src : ${{ steps.changed-py-files.outputs.files }}
73
+ src : ${{ steps.changed-py-files.outputs.all_changed_files }}
74
74
75
75
mypy :
76
76
needs : []
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ def stream_file(
115
115
time .sleep (chunk_duration )
116
116
117
117
118
- def file_from_stream (data : BinaryIO ) -> float :
118
+ def file_from_stream (data : BinaryIO ) -> str :
119
119
"""
120
120
DeprecationWarning: `file_from_stream()` is deprecated and will be removed in 1.0.0. Use `Transcriber.upload_file()` instead.
121
121
You can’t perform that action at this time.
0 commit comments