From 8be103434623021963a32c3f27e28423ecab1dd8 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Wed, 9 Jun 2021 18:11:28 +0200 Subject: [PATCH] workflows: fixes typo on python package name (#17740) The previous PR was merged optimistically. --- .github/workflows/python_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_checks.yml b/.github/workflows/python_checks.yml index 02d1de9213..ddad50475c 100644 --- a/.github/workflows/python_checks.yml +++ b/.github/workflows/python_checks.yml @@ -18,7 +18,7 @@ jobs: - name: Install Python3 run: sudo apt-get install python3 python3-setuptools python3-pip -y - name: Install tools - run: pip3 install --user mypy types-request flake8 + run: pip3 install --user mypy types-requests flake8 - name: Check MAVSDK test scripts with mypy run: $HOME/.local/bin/mypy --strict test/mavsdk_tests/*.py - name: Check MAVSDK test scripts with flake8