Skip to content

Commit 696fa00

Browse files
committed
Fix pycodestyle 2.6.0 issues
1 parent 54cb297 commit 696fa00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycompss/util/translators/py2scop/tests/test2_ast2scop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def loop_nests1(a, b, c):
3535
def loop_nests2(a, b, c):
3636
for i in range(0, N, 1):
3737
for j in range(i, M, 1):
38-
c[i][j] = c[i][j] + a[i][j] * b[i][j]
38+
c[i][j] = c[i][j] + a[i][j] * b[i][j]
3939

4040

4141
# Multiple statements

0 commit comments

Comments
 (0)