Skip to content

Commit f293d70

Browse files
committed
tests
1 parent 370e365 commit f293d70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
version: 0.3.5
3434
args: 'format --check --config ./ruff.toml'
35-
src: ${{ steps.changed-py-files.outputs.files }}
35+
src: ${{ steps.changed-py-files.outputs.all_changed_files }}
3636

3737
ruff-isort:
3838
needs: [ ]
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
version: 0.3.5
5353
args: '--select I --config ./ruff.toml'
54-
src: ${{ steps.changed-py-files.outputs.files }}
54+
src: ${{ steps.changed-py-files.outputs.all_changed_files }}
5555

5656
ruff:
5757
needs: []
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
version: 0.3.5
7272
args: '--config ./ruff.toml'
73-
src: ${{ steps.changed-py-files.outputs.files }}
73+
src: ${{ steps.changed-py-files.outputs.all_changed_files }}
7474

7575
mypy:
7676
needs: []

assemblyai/extras.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def stream_file(
115115
time.sleep(chunk_duration)
116116

117117

118-
def file_from_stream(data: BinaryIO) -> float:
118+
def file_from_stream(data: BinaryIO) -> str:
119119
"""
120120
DeprecationWarning: `file_from_stream()` is deprecated and will be removed in 1.0.0. Use `Transcriber.upload_file()` instead.
121121

0 commit comments

Comments
 (0)