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 6, 2024
1 parent a9b4f2b commit fdc4dfa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pex/cache/dirs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@

import glob
import os
from typing import Optional

from pex.enum import Enum
from pex.typing import TYPE_CHECKING, cast
from pex.variables import ENV, Variables

if TYPE_CHECKING:
from typing import Any, Iterable, Iterator, Type, TypeVar, Union
from typing import Any, Iterable, Iterator, Optional, Type, TypeVar, Union


class CacheDir(Enum["CacheDir.Value"]):
Expand Down

0 comments on commit fdc4dfa

Please sign in to comment.