From bc77fbf2368c96508c1e98f7d1f04a3440067f16 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 28 Jun 2024 18:05:49 -0700 Subject: [PATCH] chore: correct type-hint for setuptools Closes: #589 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e1fdc184..59551723 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from os import path from typing import Dict -from setuptools import setup # type: ignore[import-untyped] +from setuptools import setup # type: ignore[import-not-found] # Read version info here = path.dirname(__file__)