Skip to content

Commit

Permalink
Fix attr import.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Jul 21, 2023
1 parent ec2284d commit 4c8d8b6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pex/bin/pex.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
from argparse import Action, ArgumentDefaultsHelpFormatter, ArgumentError, ArgumentParser
from textwrap import TextWrapper

import attr

from pex import pex_warnings
from pex.argparse import HandleBoolAction
from pex.commands.command import (
Expand Down Expand Up @@ -52,7 +50,12 @@
from argparse import Namespace
from typing import Dict, Iterable, Iterator, List, Optional, Set, Tuple

import attr # vendor:skip

from pex.resolve.resolver_options import ResolverConfiguration
else:
from pex.third_party import attr


CANNOT_SETUP_INTERPRETER = 102
INVALID_OPTIONS = 103
Expand Down

0 comments on commit 4c8d8b6

Please sign in to comment.