|
9 | 9 | get_deps_from_outputs_lut,
|
10 | 10 | make_outputs_lut_from_graph,
|
11 | 11 | )
|
12 |
| -from conda_forge_tick.migrators.core import GraphMigrator, _sanitized_muids |
| 12 | +from conda_forge_tick.migrators.core import GraphMigrator |
13 | 13 | from conda_forge_tick.os_utils import pushd
|
14 | 14 | from conda_forge_tick.utils import (
|
15 | 15 | as_iterable,
|
16 |
| - frozen_to_json_friendly, |
17 | 16 | pluck,
|
18 | 17 | yaml_safe_dump,
|
19 | 18 | yaml_safe_load,
|
@@ -184,7 +183,8 @@ def filter(self, attrs: "AttrsTypedDict", not_bad_str_start: str = "") -> bool:
|
184 | 183 | configured_arch = (
|
185 | 184 | attrs.get("conda-forge.yml", {}).get("provider", {}).get(arch)
|
186 | 185 | ) or (
|
187 |
| - attrs.get("conda-forge.yml", {}).get("build_platform", {}).get(arch) not in [None, arch] |
| 186 | + attrs.get("conda-forge.yml", {}).get("build_platform", {}).get(arch) |
| 187 | + not in [None, arch] |
188 | 188 | )
|
189 | 189 | if not configured_arch:
|
190 | 190 | # This arch is not in provider or build_platform
|
@@ -351,7 +351,8 @@ def filter(self, attrs: "AttrsTypedDict", not_bad_str_start: str = "") -> bool:
|
351 | 351 | configured_arch = (
|
352 | 352 | attrs.get("conda-forge.yml", {}).get("provider", {}).get(arch)
|
353 | 353 | ) or (
|
354 |
| - attrs.get("conda-forge.yml", {}).get("build_platform", {}).get(arch) not in [None, arch] |
| 354 | + attrs.get("conda-forge.yml", {}).get("build_platform", {}).get(arch) |
| 355 | + not in [None, arch] |
355 | 356 | )
|
356 | 357 | if not configured_arch:
|
357 | 358 | # This arch is not in provider or build_platform
|
|
0 commit comments