Skip to content

Commit

Permalink
lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Molinelli authored and Evan Molinelli committed Feb 7, 2025
1 parent fb6658e commit b4a9191
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_get_diff_map(tmp_path): # type: ignore
assert len(diff_map) == len(SupportedOrganisms)

# each species should have a diff map
assert len(set([x.value for x in SupportedOrganisms]).difference([k for k in diff_map.keys()])) == 0
assert len({x.value for x in SupportedOrganisms}.difference(list(diff_map))) == 0


@pytest.fixture
Expand Down

0 comments on commit b4a9191

Please sign in to comment.