Skip to content

Commit

Permalink
Merge pull request #18 from cristianrcv/17-pycodestyle-2.6.0-issues
Browse files Browse the repository at this point in the history
Fix pycodestyle 2.6.0 issues
  • Loading branch information
cristianrcv authored May 18, 2020
2 parents 54cb297 + 696fa00 commit b01f48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycompss/util/translators/py2scop/tests/test2_ast2scop.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b01f48c

Please sign in to comment.