[@spackbot] updating style on behalf of psakievich

This commit is contained in:
psakievich 2024-05-30 03:33:35 +00:00
parent 36fb2354e1
commit 08495e066c
2 changed files with 2 additions and 6 deletions

View File

@ -2048,9 +2048,7 @@ def define_ad_hoc_versions_from_specs(
# best possible, so they're guaranteed to be used preferentially.
version = s.versions.concrete
if version is None or (
any((v == version) for v in self.possible_versions[s.name])
):
if version is None or (any((v == version) for v in self.possible_versions[s.name])):
continue
if require_checksum and not _is_checksummed_git_version(version):

View File

@ -2935,9 +2935,7 @@ def test_git_ref_version_can_be_reused(
@pytest.mark.only_clingo("clingo only reuse feature being tested")
@pytest.mark.parametrize(
"standard_version",["2.0.0", "2.1.5", "2.1.6"]
)
@pytest.mark.parametrize("standard_version", ["2.0.0", "2.1.5", "2.1.6"])
def test_reuse_prefers_standard_over_git_versions(
standard_version, install_mockery_mutable_config, do_not_check_runtimes_on_reuse
):