Skip to content

Commit

Permalink
Fix import.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Sep 2, 2024
1 parent b94113a commit c47df23
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pex/cli/commands/cache/bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@

import math

import attr

from pex.enum import Enum
from pex.typing import TYPE_CHECKING

if TYPE_CHECKING:
from typing import Callable, Optional, Union

import attr # vendor:skip
else:
from pex.third_party import attr


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

0 comments on commit c47df23

Please sign in to comment.