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 9d87984 commit 8447f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def stage(tmp_path, request):
module = f"boilercv_pipeline.stages.{request.param}"
init = import_module(module)
Params = getattr(init, f"{to_pascal(request.param)}") # noqa: N806
Deps = Params.model_fields["deps"]. annotation # noqa: N806
Deps = Params.model_fields["deps"]. annotation # noqa: N806
Outs = Params.model_fields["outs"].annotation # noqa: N806
main = import_module(f"{module}.__main__").main
return partial(
Expand Down

0 comments on commit 8447f26

Please sign in to comment.