Skip to content

Commit

Permalink
Update conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato authored Sep 28, 2024
1 parent a1ff316 commit 9d87984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ def stage(tmp_path, request):
docs = boilercv_pipeline_const.docs
module = f"boilercv_pipeline.stages.{request.param}"
init = import_module(module)
Deps = init.Deps # noqa: N806
Outs = init.Outs # noqa: N806
Params = getattr(init, f"{to_pascal(request.param)}") # noqa: N806
Deps = Params.model_fields["deps"]. annotation # noqa: N806

Check failure on line 75 in tests/conftest.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E261)

tests/conftest.py:75:51: E261 Insert at least two spaces before an inline comment
Outs = Params.model_fields["outs"].annotation # noqa: N806
main = import_module(f"{module}.__main__").main
return partial(
main,
Expand Down

0 comments on commit 9d87984

Please sign in to comment.