From 21d776cf98b6e959ed2b356022f01b796e47855d Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sat, 23 Nov 2024 23:39:53 +0530 Subject: [PATCH] fix: import Dict from typing --- podman/errors/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman/errors/exceptions.py b/podman/errors/exceptions.py index 67a269df..61527218 100644 --- a/podman/errors/exceptions.py +++ b/podman/errors/exceptions.py @@ -1,6 +1,6 @@ """Podman API Errors.""" -from typing import Iterable, List, Optional, Union, TYPE_CHECKING +from typing import Iterable, List, Optional, Union, Dict, TYPE_CHECKING from requests import Response from requests.exceptions import HTTPError