From bc65ea7ab696bf3f455c49bad4ae4375a75182a8 Mon Sep 17 00:00:00 2001 From: Joscha Date: Wed, 9 Jun 2021 22:35:55 +0200 Subject: [PATCH] Fix mypy complaining about missing type hints --- scripts/setup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/setup b/scripts/setup index b48fb1a..f6680bb 100755 --- a/scripts/setup +++ b/scripts/setup @@ -12,6 +12,6 @@ pip install --upgrade setuptools # Installing PFERD itself pip install --editable . -# Installing various tools -pip install --upgrade mypy flake8 autopep8 isort -pip install --upgrade pyinstaller +# Installing tools and type hints +pip install --upgrade mypy flake8 autopep8 isort pyinstaller +pip install --upgrade types-chardet types-certifi