From d5dd67b31d2a012e9b7a90a62011d26166c53b37 Mon Sep 17 00:00:00 2001 From: snowykami Date: Sat, 19 Oct 2024 21:07:50 +0800 Subject: [PATCH] :bug: fix from mypy import --- croterline/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/croterline/process.py b/croterline/process.py index 8aad797..d39ff95 100644 --- a/croterline/process.py +++ b/croterline/process.py @@ -1,7 +1,7 @@ from multiprocessing import Process as _Process from typing import Callable, Any -from mypy.nodes import TypeAlias +from typing import TypeAlias from croterline.context import Context from croterline.utils import IsMainProcess