Skip to content

Commit

Permalink
Fix typing import.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Oct 18, 2024
1 parent 96181e7 commit bea22bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pex/cli/commands/cache/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit bea22bf

Please sign in to comment.