Code: Select all
for j in range(0, rowsPerColumn):So after a bit of refactoring, the pydev is happy with the following code and you will only get warnings about real potential problems.By default, it looks like PyDev will hide unused variable warnings for any variables that have names beginning with "dummy", "_", or "unused".
Code: Select all
for dummyJ in range(0, rowsPerColumn):