Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinblack committed Oct 25, 2023
1 parent 06c5e16 commit 32bac85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_arcaflow_plugin_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ def test_serialization():
def test_functional(self):
input = example_plugin.InputParams(name=example_plugin.FullName("Arca", "Lot"))

output_id, output_data = example_plugin.hello_world(params=input, run_id="ci_test")
output_id, output_data = example_plugin.hello_world(
params=input, run_id="ci_test"
)

# The example plugin always returns an error:
self.assertEqual("success", output_id)
Expand Down

0 comments on commit 32bac85

Please sign in to comment.