From b815605df10b25a54dd4ab589f86b63f5a19f01e Mon Sep 17 00:00:00 2001 From: Matteo Ferrando Date: Wed, 30 Oct 2024 08:35:14 -0400 Subject: [PATCH] fix tests --- projects/fal_client/src/fal_client/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/fal_client/src/fal_client/client.py b/projects/fal_client/src/fal_client/client.py index cb2c122b..c70f93e0 100644 --- a/projects/fal_client/src/fal_client/client.py +++ b/projects/fal_client/src/fal_client/client.py @@ -10,7 +10,7 @@ from datetime import datetime, timezone from dataclasses import dataclass, field from functools import cached_property -from typing import Any, AsyncIterator, Iterator, TYPE_CHECKING, Optional, Literal +from typing import Any, AsyncIterator, Dict, Iterator, TYPE_CHECKING, Optional, Literal from urllib.parse import urlencode import httpx @@ -20,7 +20,7 @@ if TYPE_CHECKING: from PIL import Image -AnyJSON = dict[str, Any] +AnyJSON = Dict[str, Any] Priority = Literal["normal", "low"] RUN_URL_FORMAT = f"https://{FAL_RUN_HOST}/"