From e5607b217c192355447de221b1aabedcf12779c2 Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Wed, 26 Jun 2024 10:32:49 -0700 Subject: [PATCH] remove unneeded import Signed-off-by: Bernd Verst --- ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py b/ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py index 48a10f2f..793704f7 100644 --- a/ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py +++ b/ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py @@ -13,7 +13,7 @@ limitations under the License. """ -from typing import Any, Optional, Type, List, Callable +from typing import Any, Optional, Type, List from fastapi import FastAPI, APIRouter, Request, Response, status # type: ignore from fastapi.logger import logger