From e7a1f7ac78065266a4b3e036439dc61d930073af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20W=C4=85troba?= <markowanga@gmail.com> Date: Tue, 5 Oct 2021 14:47:16 +0200 Subject: [PATCH] Fix lint --- .github/workflows/python-package.yml | 3 ++- .../integration/service_core/asr/asr_base_processor.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cc3f081..24c7ad7 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/sziszapangma/integration/service_core/asr/asr_base_processor.py b/sziszapangma/integration/service_core/asr/asr_base_processor.py index a447dc2..11ac60e 100644 --- a/sziszapangma/integration/service_core/asr/asr_base_processor.py +++ b/sziszapangma/integration/service_core/asr/asr_base_processor.py @@ -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: -- GitLab