Skip to content
Snippets Groups Projects
Unverified Commit e7a1f7ac authored by Marcin Wątroba's avatar Marcin Wątroba
Browse files

Fix lint

parent f9d36ebb
Branches
1 merge request!10Feature/add auth asr service
......@@ -8,7 +8,8 @@ jobs:
matrix:
python-version: [ 3.9.6 ]
poetry-version: [ 1.1.5 ]
os: [ ubuntu-20.04, macos-latest, windows-latest ]
# os: [ ubuntu-20.04, macos-latest, windows-latest ]
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
......
......@@ -39,7 +39,7 @@ class AsrBaseProcessor(ABC):
response_dict = {
"transcription": transcription.words,
"full_text": transcription.full_text,
"words_time_alignment": transcription.words_time_alignment
"words_time_alignment": transcription.words_time_alignment,
}
result_object = jsonify(response_dict)
except Exception as exception:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment