From 44e29cc32ea85b8fce8857c4e97c45474db06fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 30 Oct 2024 01:29:54 +0100 Subject: [PATCH] fix: Make mypy happy --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e706a7c..7b284b1 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os.path -from setuptools import setup, find_packages # type: ignore +from setuptools import setup, find_packages def read(filename: str) -> str: @@ -41,7 +41,7 @@ def read(filename: str) -> str: scripts=['bin/run_backend.py', 'bin/start.py'], - classifiers=( + classifiers=( # type: ignore[arg-type] 'Development Status :: 2 - Pre-Alpha', 'Environment :: No Input/Output (Daemon)', 'Intended Audience :: System Administrators',