Skip to content

Commit

Permalink
fixup! WIP descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxcode123 committed Feb 15, 2024
1 parent 69f570f commit d4a9493
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/property_utils/units/descriptors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@
"""

from enum import Enum, EnumMeta
from typing import List, Union, Protocol, TypeAlias, Optional, TypeVar
from typing import List, Union, Protocol, Optional, TypeVar

try:
from typing import TypeAlias # Python >= 3.10
except ImportError:
from typing_extensions import TypeAlias # Python < 3.10

from dataclasses import dataclass, field

from property_utils.exceptions.exceptions import (
Expand Down

0 comments on commit d4a9493

Please sign in to comment.