Skip to content
Snippets Groups Projects
Commit cf02c71b authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[test][prefix] Fix library nesting related warnings

parent cd417a46
No related branches found
No related tags found
1 merge request!62Code cleanup
......@@ -44,6 +44,10 @@ class Algorithm:
def process(self, inputs, outputs):
outputs["out_data"].write(
{"value": lib.sum(inputs["in_data"].data.value, self.offset)}
{
"value": lib.sum( # noqa lib comes from library management
inputs["in_data"].data.value, self.offset
)
}
)
return True
......@@ -34,6 +34,9 @@
###################################################################################
# flake8: noqa valid comes from the library management
def f(par):
return valid.f() + par
......
......@@ -34,6 +34,9 @@
###################################################################################
# flake8: noqa nest1 comes from the library management
def f(par):
return nest1.f(par) + par
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment