From bea22bf780ebceba86ec1bb2cd324f9684c2b962 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Fri, 18 Oct 2024 13:12:23 -0700 Subject: [PATCH] Fix typing import. --- pex/cli/commands/cache/command.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pex/cli/commands/cache/command.py b/pex/cli/commands/cache/command.py index 4bb177afd..d4c82d63f 100644 --- a/pex/cli/commands/cache/command.py +++ b/pex/cli/commands/cache/command.py @@ -9,7 +9,6 @@ from argparse import Action, ArgumentError, _ActionsContainer from collections import Counter, OrderedDict, defaultdict from datetime import datetime, timedelta -from typing import DefaultDict from pex.cache import access as cache_access from pex.cache import data as cache_data @@ -41,7 +40,7 @@ if TYPE_CHECKING: import typing - from typing import IO, Dict, Iterable, List, Mapping, Optional, Tuple, Union + from typing import IO, DefaultDict, Dict, Iterable, List, Mapping, Optional, Tuple, Union import attr # vendor:skip else: