Skip to content

Commit

Permalink
fix: fixes formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Oct 26, 2023
1 parent 1ccef66 commit b52ff69
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/trestlebot/tasks/test_base_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@
False,
],
[[], [], "simplified_nist_catalog", True],
[[], ["*"], "simplified_nist_catalog", False]
[[], ["*"], "simplified_nist_catalog", False],
],
)
def test_is_skipped(skip_list: List[str], include_list: List[str],
model_name: str, expected: str) -> None:
def test_is_skipped(
skip_list: List[str], include_list: List[str], model_name: str, expected: str
) -> None:
"""Test skip logic."""
model_path = pathlib.Path(model_name)
model_filter = ModelFilter(skip_list, include_list)
Expand Down

0 comments on commit b52ff69

Please sign in to comment.