flake8 --ignore=E122,E123,E124,E126,E127,E128,E402 --show-source --max-line-length=120 "add_mesh_torus.py" add_mesh_torus.py:37:1: W293 blank line contains whitespace ^ add_mesh_torus.py:40:1: W293 blank line contains whitespace ^ add_mesh_torus.py:47:1: W293 blank line contains whitespace ^ add_mesh_torus.py:50:1: W293 blank line contains whitespace ^ add_mesh_torus.py:55:1: W293 blank line contains whitespace ^ add_mesh_torus.py:57:1: W293 blank line contains whitespace ^ add_mesh_torus.py:62:1: W293 blank line contains whitespace ^ add_mesh_torus.py:67:1: W293 blank line contains whitespace ^ add_mesh_torus.py:74:1: W293 blank line contains whitespace ^ add_mesh_torus.py:80:1: W293 blank line contains whitespace ^ add_mesh_torus.py:82:1: W293 blank line contains whitespace ^ add_mesh_torus.py:93:1: W293 blank line contains whitespace ^ add_mesh_torus.py:94:16: E226 missing whitespace around arithmetic operator uStep = 1.0/numberMajorDivision; ^ add_mesh_torus.py:94:36: E703 statement ends with a semicolon uStep = 1.0/numberMajorDivision; ^ add_mesh_torus.py:95:16: E226 missing whitespace around arithmetic operator vStep = 1.0/numberMinorDivision; ^ add_mesh_torus.py:95:36: E703 statement ends with a semicolon vStep = 1.0/numberMinorDivision; ^ add_mesh_torus.py:96:20: E703 statement ends with a semicolon vertexIndex = 0; ^ add_mesh_torus.py:101:50: E226 missing whitespace around arithmetic operator if minor_index == numberMinorDivision-1 and major_index == 0: ^ add_mesh_torus.py:102:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[1][uv_layer].uv = ( u , v) ^ add_mesh_torus.py:102:73: E203 whitespace before ',' bm.faces[vertexIndex].loops[1][uv_layer].uv = ( u , v) ^ add_mesh_torus.py:103:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[2][uv_layer].uv = ( u + uStep, v) ^ add_mesh_torus.py:104:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[0][uv_layer].uv = ( u , v + vStep) ^ add_mesh_torus.py:104:73: E203 whitespace before ',' bm.faces[vertexIndex].loops[0][uv_layer].uv = ( u , v + vStep) ^ add_mesh_torus.py:105:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[3][uv_layer].uv = ( u + uStep, v + vStep) ^ add_mesh_torus.py:106:23: E226 missing whitespace around arithmetic operator v = (v+vStep)%1.0 ^ add_mesh_torus.py:106:30: E228 missing whitespace around modulo operator v = (v+vStep)%1.0 ^ add_mesh_torus.py:109:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[0][uv_layer].uv = ( u , v) ^ add_mesh_torus.py:109:73: E203 whitespace before ',' bm.faces[vertexIndex].loops[0][uv_layer].uv = ( u , v) ^ add_mesh_torus.py:110:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[1][uv_layer].uv = ( u + uStep, v) ^ add_mesh_torus.py:111:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[3][uv_layer].uv = ( u , v + vStep) ^ add_mesh_torus.py:111:73: E203 whitespace before ',' bm.faces[vertexIndex].loops[3][uv_layer].uv = ( u , v + vStep) ^ add_mesh_torus.py:112:64: E201 whitespace after '(' bm.faces[vertexIndex].loops[2][uv_layer].uv = ( u + uStep, v + vStep) ^ add_mesh_torus.py:113:23: E226 missing whitespace around arithmetic operator v = (v+vStep)%1.0 ^ add_mesh_torus.py:113:30: E228 missing whitespace around modulo operator v = (v+vStep)%1.0 ^ add_mesh_torus.py:115:15: E226 missing whitespace around arithmetic operator u = (u+uStep)%1.0 ^ add_mesh_torus.py:115:22: E228 missing whitespace around modulo operator u = (u+uStep)%1.0 ^ add_mesh_torus.py:116:1: W293 blank line contains whitespace ^ add_mesh_torus.py:121:1: E302 expected 2 blank lines, found 1 class AddTorus(Operator, object_utils.AddObjectHelper): ^ add_mesh_torus.py:195:1: W293 blank line contains whitespace ^ add_mesh_torus.py:265:1: W293 blank line contains whitespace ^ add_mesh_torus.py:267:25: E231 missing whitespace after ',' add_uvs(mesh,self.minor_segments,self.major_segments) ^ add_mesh_torus.py:267:45: E231 missing whitespace after ',' add_uvs(mesh,self.minor_segments,self.major_segments) ^ add_mesh_torus.py:270:1: W293 blank line contains whitespace ^ add_mesh_torus.py:272:9: E303 too many blank lines (2) return {'FINISHED'} ^ add_mesh_torus.py:272:28: W292 no newline at end of file return {'FINISHED'} ^