Skip to content

Commit

Permalink
import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Nov 26, 2024
1 parent f6a342f commit 7ebd7eb
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions conda_forge_tick/feedstock_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import collections.abc
import hashlib
import logging
import os
import re
import tempfile
import typing
Expand All @@ -19,11 +20,14 @@
from requests.models import Response

from conda_forge_tick.lazy_json_backends import LazyJson, dumps, loads
from conda_forge_tick.migrators_types import RecipeTypedDict
from conda_forge_tick.migrators_types import (
PackageName,
RecipeTypedDict,
RequirementsTypedDict,
TestTypedDict,
)
from conda_forge_tick.utils import as_iterable, parse_meta_yaml, parse_recipe_yaml

from .migrators_types import PackageName, RequirementsTypedDict, TestTypedDict

logger = logging.getLogger(__name__)

PIN_SEP_PAT = re.compile(r" |>|<|=|\[")
Expand Down Expand Up @@ -698,7 +702,6 @@ def load_feedstock(

if __name__ == "__main__":
import json
import os
import sys

# Do not use docker when debugging
Expand Down

0 comments on commit 7ebd7eb

Please sign in to comment.