diff --git a/conda_lock/lookup.py b/conda_lock/lookup.py index ccb70fa7e..04ab53995 100644 --- a/conda_lock/lookup.py +++ b/conda_lock/lookup.py @@ -2,8 +2,8 @@ from contextlib import suppress from functools import cached_property -from typing import Dict, Union, cast from pathlib import Path +from typing import Dict, Union, cast import requests import yaml diff --git a/tests/test_conda_lock.py b/tests/test_conda_lock.py index da788303a..19c42894f 100644 --- a/tests/test_conda_lock.py +++ b/tests/test_conda_lock.py @@ -1025,6 +1025,7 @@ def test_parse_pyproject_pypi_overrides(pep621_pyproject_toml_pypi_override: Pat # override for the package "some-name-i-want-to-override". assert "resolved-name" in specs + def test_explicit_toposorted() -> None: """Verify that explicit lockfiles are topologically sorted.