Skip to content

Commit

Permalink
conditional import 1
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep authored Aug 25, 2023
1 parent 0bc2a71 commit 6afd333
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/hatch/env/plugin/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@
import os
import sys
from abc import ABC, abstractmethod
from collections.abc import Iterable
from contextlib import contextmanager
from os.path import isabs
from typing import TYPE_CHECKING

from hatch.config.constants import AppEnvVars
from hatch.env.utils import add_verbosity_flag
from hatch.project.utils import format_script_commands, parse_script_command
from hatch.utils.structures import EnvVars

if TYPE_CHECKING:
from collections.abc import Iterable


class EnvironmentInterface(ABC):
"""
Expand Down

0 comments on commit 6afd333

Please sign in to comment.