From 696fa00a4baed73ba633369e21835da0b2a308d9 Mon Sep 17 00:00:00 2001 From: CristianRCV Date: Mon, 18 May 2020 13:13:25 +0200 Subject: [PATCH] Fix pycodestyle 2.6.0 issues --- pycompss/util/translators/py2scop/tests/test2_ast2scop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycompss/util/translators/py2scop/tests/test2_ast2scop.py b/pycompss/util/translators/py2scop/tests/test2_ast2scop.py index eab9125f..533b2b2b 100644 --- a/pycompss/util/translators/py2scop/tests/test2_ast2scop.py +++ b/pycompss/util/translators/py2scop/tests/test2_ast2scop.py @@ -35,7 +35,7 @@ def loop_nests1(a, b, c): def loop_nests2(a, b, c): for i in range(0, N, 1): for j in range(i, M, 1): - c[i][j] = c[i][j] + a[i][j] * b[i][j] + c[i][j] = c[i][j] + a[i][j] * b[i][j] # Multiple statements