View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004351 | Taler | obsolete component | public | 2016-03-27 22:38 | 2016-04-01 16:20 |
| Reporter | Florian Dold | Assigned To | Marcello Stanisci | ||
| Priority | normal | Severity | minor | Reproducibility | have not tried |
| Status | closed | Resolution | fixed | ||
| Product Version | 0.0 | ||||
| Target Version | 0.0 | Fixed in Version | 0.0 | ||
| Summary | 0004351: bank violates pep8 in about 370 places | ||||
| Description | Following style guides isn't everything, it won't automatically produce nice code. Nevertheless, in addition to writing pythonic code (which we are not doing yet in some places) we should also respect pep8. | ||||
| Additional Information | $ flake8 --max-line-length=120 . ./setup.py:1:1: F401 'find_packages' imported but unused ./setup.py:15:19: E251 unexpected spaces around keyword / parameter equals ./setup.py:15:21: E251 unexpected spaces around keyword / parameter equals ./setup.py:16:19: E203 whitespace before ':' ./bank_app/admin.py:4:1: F401 'admin' imported but unused ./bank_app/captcha.py:24:1: F401 'write_log_file' imported but unused ./bank_app/captcha.py:39:1: F401 'BadIncomingRequest' imported but unused ./bank_app/captcha.py:52:1: E302 expected 2 blank lines, found 1 ./bank_app/captcha.py:53:1: E115 expected an indented block (comment) ./bank_app/captcha.py:56:15: E122 continuation line missing indentation or outdented ./bank_app/captcha.py:58:1: E265 block comment should start with '# ' ./bank_app/captcha.py:59:1: E302 expected 2 blank lines, found 1 ./bank_app/captcha.py:76:59: E261 at least two spaces before inline comment ./bank_app/captcha.py:79:5: F841 local variable 'exchange' is assigned to but never used ./bank_app/captcha.py:89:1: E302 expected 2 blank lines, found 1 ./bank_app/captcha.py:91:8: E701 multiple statements on one line (colon) ./bank_app/captcha.py:101:1: E302 expected 2 blank lines, found 1 ./bank_app/captcha.py:104:8: E701 multiple statements on one line (colon) ./bank_app/captcha.py:112:1: E302 expected 2 blank lines, found 1 ./bank_app/captcha.py:118:22: E261 at least two spaces before inline comment ./bank_app/captcha.py:126:11: E111 indentation is not a multiple of four ./bank_app/captcha.py:135:34: E128 continuation line under-indented for visual indent ./bank_app/captcha.py:136:34: E128 continuation line under-indented for visual indent ./bank_app/captcha.py:137:34: E128 continuation line under-indented for visual indent ./bank_app/captcha.py:138:12: E701 multiple statements on one line (colon) ./bank_app/captcha.py:138:78: W291 trailing whitespace ./bank_app/captcha.py:142:9: E701 multiple statements on one line (colon) ./bank_app/config.py:11:24: E231 missing whitespace after ':' ./bank_app/config.py:13:16: E124 closing bracket does not match visual indentation ./bank_app/errors.py:19:1: F401 'HttpResponse' imported but unused ./bank_app/errors.py:22:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:25:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:28:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:32:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:35:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:38:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:42:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:45:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:48:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:51:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:54:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:57:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:60:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:62:34: E128 continuation line under-indented for visual indent ./bank_app/errors.py:63:34: E128 continuation line under-indented for visual indent ./bank_app/errors.py:63:34: W503 line break before binary operator ./bank_app/errors.py:69:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:71:1: E302 expected 2 blank lines, found 0 ./bank_app/errors.py:73:1: E302 expected 2 blank lines, found 0 ./bank_app/errors.py:75:1: E302 expected 2 blank lines, found 0 ./bank_app/errors.py:78:18: E128 continuation line under-indented for visual indent ./bank_app/errors.py:83:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:86:18: E128 continuation line under-indented for visual indent ./bank_app/errors.py:91:1: E302 expected 2 blank lines, found 1 ./bank_app/errors.py:94:18: E128 continuation line under-indented for visual indent ./bank_app/funds_mgmt.py:19:1: F401 'user_not_logged_handler' imported but unused ./bank_app/funds_mgmt.py:22:1: F401 'BadAmount' imported but unused ./bank_app/funds_mgmt.py:22:1: F401 'UserNotLogged' imported but unused ./bank_app/funds_mgmt.py:27:1: F401 'extract_history' imported but unused ./bank_app/funds_mgmt.py:28:1: F401 'ObjectDoesNotExist' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'floatify_amount' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'get_currency' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'get_logged_user_account' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'get_pretty_exchange_details' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'transfer_in' imported but unused ./bank_app/funds_mgmt.py:29:1: F401 'write_log_file' imported but unused ./bank_app/funds_mgmt.py:37:1: F401 'get_central_page' imported but unused ./bank_app/funds_mgmt.py:41:1: F401 'History' imported but unused ./bank_app/funds_mgmt.py:52:1: F401 're' imported but unused ./bank_app/funds_mgmt.py:54:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:59:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:68:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:80:1: E302 expected 2 blank lines, found 0 ./bank_app/funds_mgmt.py:82:8: E701 multiple statements on one line (colon) ./bank_app/funds_mgmt.py:84:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:88:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:90:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:92:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:94:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:96:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:98:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:100:1: W293 blank line contains whitespace ./bank_app/funds_mgmt.py:101:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:113:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:115:58: E203 whitespace before ':' ./bank_app/funds_mgmt.py:117:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:119:3: E111 indentation is not a multiple of four ./bank_app/funds_mgmt.py:121:1: E302 expected 2 blank lines, found 1 ./bank_app/funds_mgmt.py:123:16: F821 undefined name 'HttpResponseServerError' ./bank_app/funds_mgmt.py:126:37: E203 whitespace before ':' ./bank_app/funds_mgmt.py:128:30: E127 continuation line over-indented for visual indent ./bank_app/funds_mgmt.py:140:37: E203 whitespace before ':' ./bank_app/funds_mgmt.py:141:36: E203 whitespace before ':' ./bank_app/funds_mgmt.py:142:38: E203 whitespace before ':' ./bank_app/funds_mgmt.py:144:30: E127 continuation line over-indented for visual indent ./bank_app/funds_mgmt.py:149:1: W293 blank line contains whitespace ./bank_app/history.py:19:1: F401 'get_relative_parameter' imported but unused ./bank_app/history.py:19:1: F401 'write_log_file' imported but unused ./bank_app/history.py:27:1: F401 'UserNotLogged' imported but unused ./bank_app/history.py:27:1: F401 'user_not_logged_handler' imported but unused ./bank_app/history.py:30:1: F401 'HttpResponse' imported but unused ./bank_app/history.py:33:1: F401 'json' imported but unused ./bank_app/history.py:34:1: F401 'datetime' imported but unused ./bank_app/history.py:36:1: E302 expected 2 blank lines, found 1 ./bank_app/history.py:38:16: E271 multiple spaces after keyword ./bank_app/history.py:47:1: E302 expected 2 blank lines, found 1 ./bank_app/history.py:53:1: E302 expected 2 blank lines, found 1 ./bank_app/history.py:58:1: E302 expected 2 blank lines, found 1 ./bank_app/history.py:62:1: E302 expected 2 blank lines, found 1 ./bank_app/history.py:76:19: E128 continuation line under-indented for visual indent ./bank_app/history.py:77:19: E128 continuation line under-indented for visual indent ./bank_app/history.py:78:19: E128 continuation line under-indented for visual indent ./bank_app/history.py:79:19: E128 continuation line under-indented for visual indent ./bank_app/lib.py:19:1: F401 'HttpResponse' imported but unused ./bank_app/lib.py:19:1: F401 'JsonResponse' imported but unused ./bank_app/lib.py:20:1: F401 'render' imported but unused ./bank_app/lib.py:21:1: E265 block comment should start with '# ' ./bank_app/lib.py:23:1: F401 'NoTalerDatabase' imported but unused ./bank_app/lib.py:31:1: F401 'urljoin' imported but unused ./bank_app/lib.py:38:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:43:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:48:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:52:24: W291 trailing whitespace ./bank_app/lib.py:61:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:68:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:69:8: E701 multiple statements on one line (colon) ./bank_app/lib.py:69:53: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:69:55: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:73:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:74:62: W291 trailing whitespace ./bank_app/lib.py:78:26: W291 trailing whitespace ./bank_app/lib.py:83:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:90:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:95:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:97:49: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:97:51: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:102:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:103:46: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:103:48: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:105:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:108:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:113:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:115:12: E701 multiple statements on one line (colon) ./bank_app/lib.py:121:43: W503 line break before binary operator ./bank_app/lib.py:127:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:135:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:136:49: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:136:51: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:148:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:152:55: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:152:57: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:153:56: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:153:58: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:166:1: E302 expected 2 blank lines, found 1 ./bank_app/lib.py:171:49: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:171:51: E251 unexpected spaces around keyword / parameter equals ./bank_app/lib.py:177:10: W291 trailing whitespace ./bank_app/models.py:15:1: W293 blank line contains whitespace ./bank_app/models.py:23:1: E302 expected 2 blank lines, found 1 ./bank_app/models.py:27:48: E261 at least two spaces before inline comment ./bank_app/models.py:32:1: E302 expected 2 blank lines, found 1 ./bank_app/privileged_accounts.py:21:1: F401 'write_log_file' imported but unused ./bank_app/privileged_accounts.py:23:1: E302 expected 2 blank lines, found 1 ./bank_app/privileged_accounts.py:24:3: E111 indentation is not a multiple of four ./bank_app/privileged_accounts.py:24:6: E701 multiple statements on one line (colon) ./bank_app/privileged_accounts.py:25:3: E111 indentation is not a multiple of four ./bank_app/privileged_accounts.py:30:1: W293 blank line contains whitespace ./bank_app/privileged_accounts.py:31:3: E111 indentation is not a multiple of four ./bank_app/privileged_accounts.py:31:6: E701 multiple statements on one line (colon) ./bank_app/privileged_accounts.py:32:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:24:1: E302 expected 2 blank lines, found 1 ./bank_app/schemas.py:25:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:26:22: E127 continuation line over-indented for visual indent ./bank_app/schemas.py:27:1: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:27:1: W191 indentation contains tabs ./bank_app/schemas.py:28:1: W191 indentation contains tabs ./bank_app/schemas.py:28:3: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:29:1: W191 indentation contains tabs ./bank_app/schemas.py:29:3: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:30:1: W191 indentation contains tabs ./bank_app/schemas.py:30:3: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:31:1: W191 indentation contains tabs ./bank_app/schemas.py:31:3: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:32:1: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:32:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:33:32: E127 continuation line over-indented for visual indent ./bank_app/schemas.py:34:1: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:34:1: W191 indentation contains tabs ./bank_app/schemas.py:34:47: W291 trailing whitespace ./bank_app/schemas.py:35:1: W191 indentation contains tabs ./bank_app/schemas.py:35:4: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:36:1: W191 indentation contains tabs ./bank_app/schemas.py:36:4: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:37:1: W191 indentation contains tabs ./bank_app/schemas.py:37:4: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:38:1: W191 indentation contains tabs ./bank_app/schemas.py:39:1: W191 indentation contains tabs ./bank_app/schemas.py:39:4: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:40:1: E101 indentation contains mixed spaces and tabs ./bank_app/schemas.py:40:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:40:3: E301 expected 1 blank line, found 0 ./bank_app/schemas.py:41:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:42:8: E701 multiple statements on one line (colon) ./bank_app/schemas.py:44:7: E111 indentation is not a multiple of four ./bank_app/schemas.py:44:13: F821 undefined name 'BadAmount' ./bank_app/schemas.py:47:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:48:3: E111 indentation is not a multiple of four ./bank_app/schemas.py:49:8: E701 multiple statements on one line (colon) ./bank_app/schemas.py:51:7: E111 indentation is not a multiple of four ./bank_app/test.py:20:1: F401 'HttpResponse' imported but unused ./bank_app/test.py:22:1: E302 expected 2 blank lines, found 1 ./bank_app/test.py:27:5: E265 block comment should start with '# ' ./bank_app/test.py:29:1: E302 expected 2 blank lines, found 1 ./bank_app/test.py:32:1: W293 blank line contains whitespace ./bank_app/test.py:32:1: W391 blank line at end of file ./bank_app/tests.py:1:1: F401 'TestCase' imported but unused ./bank_app/user_mgmt.py:15:1: W293 blank line contains whitespace ./bank_app/user_mgmt.py:21:1: F401 'HttpResponse' imported but unused ./bank_app/user_mgmt.py:21:1: F401 'JsonResponse' imported but unused ./bank_app/user_mgmt.py:24:1: F401 'get_pin_tan_url' imported but unused ./bank_app/user_mgmt.py:24:1: F401 'get_public_accounts' imported but unused ./bank_app/user_mgmt.py:24:1: F401 'wire_transfer' imported but unused ./bank_app/user_mgmt.py:24:1: F401 'write_log_file' imported but unused ./bank_app/user_mgmt.py:37:1: F401 'no_bank_account_handler' imported but unused ./bank_app/user_mgmt.py:37:1: F401 'non_existent_db_handler' imported but unused ./bank_app/user_mgmt.py:37:1: F401 'user_not_logged_handler' imported but unused ./bank_app/user_mgmt.py:41:1: F401 'extract_history' imported but unused ./bank_app/user_mgmt.py:42:1: F401 'pre_accounts' imported but unused ./bank_app/user_mgmt.py:50:1: F401 'json' imported but unused ./bank_app/user_mgmt.py:52:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:54:5: E265 block comment should start with '# ' ./bank_app/user_mgmt.py:63:7: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:64:11: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:65:7: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:66:7: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:67:11: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:68:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:70:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:73:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:74:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:76:36: E128 continuation line under-indented for visual indent ./bank_app/user_mgmt.py:80:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:81:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:82:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:83:11: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:84:15: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:85:7: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:86:11: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:91:35: E203 whitespace before ':' ./bank_app/user_mgmt.py:93:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:95:7: E111 indentation is not a multiple of four ./bank_app/user_mgmt.py:114:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:120:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:121:47: W291 trailing whitespace ./bank_app/user_mgmt.py:128:19: E128 continuation line under-indented for visual indent ./bank_app/user_mgmt.py:129:18: E128 continuation line under-indented for visual indent ./bank_app/user_mgmt.py:137:1: E302 expected 2 blank lines, found 0 ./bank_app/user_mgmt.py:141:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:146:1: E302 expected 2 blank lines, found 1 ./bank_app/user_mgmt.py:150:1: E302 expected 2 blank lines, found 1 ./bank_app/util.py:18:1: F401 'HttpResponse' imported but unused ./bank_app/util.py:18:1: F401 'JsonResponse' imported but unused ./bank_app/util.py:21:23: E128 continuation line under-indented for visual indent ./bank_app/util.py:22:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:22:1: W191 indentation contains tabs ./bank_app/util.py:22:9: E128 continuation line under-indented for visual indent ./bank_app/util.py:23:1: W191 indentation contains tabs ./bank_app/util.py:23:3: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:23:9: E128 continuation line under-indented for visual indent ./bank_app/util.py:25:1: F401 'UserNotLogged' imported but unused ./bank_app/util.py:25:1: F401 'user_not_logged_handler' imported but unused ./bank_app/util.py:26:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:26:26: E128 continuation line under-indented for visual indent ./bank_app/util.py:29:1: E302 expected 2 blank lines, found 1 ./bank_app/util.py:30:3: E111 indentation is not a multiple of four ./bank_app/util.py:31:3: E111 indentation is not a multiple of four ./bank_app/util.py:33:1: E302 expected 2 blank lines, found 1 ./bank_app/util.py:34:3: E111 indentation is not a multiple of four ./bank_app/util.py:38:18: E128 continuation line under-indented for visual indent ./bank_app/util.py:39:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:39:1: W191 indentation contains tabs ./bank_app/util.py:39:5: E128 continuation line under-indented for visual indent ./bank_app/util.py:40:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:40:3: E111 indentation is not a multiple of four ./bank_app/util.py:42:3: E111 indentation is not a multiple of four ./bank_app/util.py:44:16: E128 continuation line under-indented for visual indent ./bank_app/util.py:45:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:45:1: W191 indentation contains tabs ./bank_app/util.py:45:10: E128 continuation line under-indented for visual indent ./bank_app/util.py:50:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:50:3: E111 indentation is not a multiple of four ./bank_app/util.py:52:1: E302 expected 2 blank lines, found 1 ./bank_app/util.py:53:3: E111 indentation is not a multiple of four ./bank_app/util.py:56:3: E111 indentation is not a multiple of four ./bank_app/util.py:59:3: E111 indentation is not a multiple of four ./bank_app/util.py:64:1: E302 expected 2 blank lines, found 0 ./bank_app/util.py:65:3: E111 indentation is not a multiple of four ./bank_app/util.py:65:72: W291 trailing whitespace ./bank_app/util.py:66:3: E111 indentation is not a multiple of four ./bank_app/util.py:67:3: E111 indentation is not a multiple of four ./bank_app/util.py:68:3: E111 indentation is not a multiple of four ./bank_app/util.py:70:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:70:1: W191 indentation contains tabs ./bank_app/util.py:70:13: E128 continuation line under-indented for visual indent ./bank_app/util.py:71:1: W191 indentation contains tabs ./bank_app/util.py:71:6: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:71:13: E128 continuation line under-indented for visual indent ./bank_app/util.py:72:1: W191 indentation contains tabs ./bank_app/util.py:72:3: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:72:34: E128 continuation line under-indented for visual indent ./bank_app/util.py:73:1: W191 indentation contains tabs ./bank_app/util.py:73:6: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:73:13: E128 continuation line under-indented for visual indent ./bank_app/util.py:74:1: W191 indentation contains tabs ./bank_app/util.py:74:6: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:74:13: E128 continuation line under-indented for visual indent ./bank_app/util.py:75:1: W191 indentation contains tabs ./bank_app/util.py:75:6: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:75:13: E128 continuation line under-indented for visual indent ./bank_app/util.py:76:1: E101 indentation contains mixed spaces and tabs ./bank_app/util.py:77:1: W391 blank line at end of file ./bank_app/views.py:19:1: F401 'login_process' imported but unused ./bank_app/views.py:19:1: F401 'logout_process' imported but unused ./bank_app/views.py:19:1: F401 'register_process' imported but unused ./bank_app/views.py:19:1: F401 'view_public_accno_process' imported but unused ./bank_app/views.py:23:1: F401 'pin_tan_question' imported but unused ./bank_app/views.py:23:1: F401 'pin_tan_question_attempt' imported but unused ./bank_app/views.py:23:1: F401 'pin_tan_verify' imported but unused ./bank_app/views.py:26:1: F401 'add_incoming_attempt' imported but unused ./bank_app/views.py:26:1: F401 'withdraw_process' imported but unused ./bank_app/views.py:28:1: F401 'history_process' imported but unused ./bank_app/views.py:28:1: F401 'public_accounts_process' imported but unused ./bank_app/views.py:30:1: F401 'home_page' imported but unused ./bank_app/views.py:30:1: F401 'profile_process' imported but unused ./bank_app/views.py:32:1: F401 'check_db_test_process' imported but unused ./bank_app/management/commands/check_db.py:18:1: F401 'CommandError' imported but unused ./bank_app/management/commands/check_db.py:21:1: F401 'BankAccount' imported but unused ./bank_app/management/commands/check_db.py:24:1: E302 expected 2 blank lines, found 1 ./bank_app/management/commands/check_db.py:25:8: E701 multiple statements on one line (colon) ./bank_app/management/commands/check_db.py:29:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:30:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:34:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:35:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:36:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:37:19: W503 line break before binary operator ./bank_app/management/commands/check_db.py:41:1: E302 expected 2 blank lines, found 1 ./bank_app/management/commands/pre_accounts.py:18:1: F401 'CommandError' imported but unused ./bank_app/management/commands/pre_accounts.py:23:1: F401 'write_log_file' imported but unused ./bank_app/management/commands/pre_accounts.py:23:1: F811 redefinition of unused 'write_log_file' from line 19 ./bank_app/management/commands/pre_accounts.py:25:1: F401 'randint' imported but unused ./bank_app/management/commands/pre_accounts.py:27:1: E302 expected 2 blank lines, found 1 ./bank_app/management/commands/pre_accounts.py:28:3: E111 indentation is not a multiple of four ./bank_app/management/commands/pre_accounts.py:29:8: E701 multiple statements on one line (colon) ./bank_app/management/commands/pre_accounts.py:31:7: E111 indentation is not a multiple of four ./bank_app/management/commands/pre_accounts.py:32:7: E111 indentation is not a multiple of four ./bank_app/management/commands/pre_accounts.py:32:66: E502 the backslash is redundant between brackets ./bank_app/management/commands/pre_accounts.py:33:9: E128 continuation line under-indented for visual indent ./bank_app/management/commands/pre_accounts.py:34:7: E111 indentation is not a multiple of four ./bank_app/management/commands/pre_accounts.py:37:1: E101 indentation contains mixed spaces and tabs ./bank_app/management/commands/pre_accounts.py:37:1: W191 indentation contains tabs ./bank_app/management/commands/pre_accounts.py:37:9: E128 continuation line under-indented for visual indent ./bank_app/management/commands/pre_accounts.py:38:1: W191 indentation contains tabs ./bank_app/management/commands/pre_accounts.py:38:3: E101 indentation contains mixed spaces and tabs ./bank_app/management/commands/pre_accounts.py:38:9: E128 continuation line under-indented for visual indent ./bank_app/management/commands/pre_accounts.py:39:1: E101 indentation contains mixed spaces and tabs ./bank_app/management/commands/pre_accounts.py:39:7: E111 indentation is not a multiple of four ./bank_app/management/commands/pre_accounts.py:41:1: E302 expected 2 blank lines, found 1 ./bank_app/management/commands/sample_donations.py:20:1: F401 'CommandError' imported but unused ./bank_app/management/commands/sample_donations.py:21:1: F401 'write_log_file' imported but unused ./bank_app/management/commands/sample_donations.py:26:1: E302 expected 2 blank lines, found 1 ./bank_app/management/commands/sample_donations.py:29:25: E231 missing whitespace after ',' ./bank_app/management/commands/sample_donations.py:31:37: E231 missing whitespace after ':' ./bank_app/management/commands/sample_donations.py:38:1: E302 expected 2 blank lines, found 1 | ||||
| Tags | No tags attached. | ||||
|
|
fixed in bfca565..a01b8c7 Just note that flake8 complains on views.py because that file does all the imports needed from urls.py, which just imports views.py Other complains are about debugging functions imported and not used which I prefer leaving around for now.. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2016-03-27 22:38 | Florian Dold | New Issue | |
| 2016-03-27 22:38 | Florian Dold | Status | new => assigned |
| 2016-03-27 22:38 | Florian Dold | Assigned To | => Marcello Stanisci |
| 2016-04-01 14:44 | Marcello Stanisci | Note Added: 0010348 | |
| 2016-04-01 14:44 | Marcello Stanisci | Status | assigned => resolved |
| 2016-04-01 14:44 | Marcello Stanisci | Resolution | open => fixed |
| 2016-04-01 16:20 | Christian Grothoff | Status | resolved => closed |
| 2016-04-01 16:20 | Christian Grothoff | Product Version | => 0.0 |
| 2016-04-01 16:20 | Christian Grothoff | Fixed in Version | => 0.0 |
| 2016-04-01 16:20 | Christian Grothoff | Target Version | => 0.0 |
| 2022-08-23 20:26 | Christian Grothoff | Category | bank (demonstrator) => py bank (demonstrator, obsolete) |
| 2023-12-03 01:23 | Christian Grothoff | Category | py bank (demonstrator, obsolete) => obsolete componet |
| 2023-12-11 20:08 | Florian Dold | Category | obsolete componet => obsolete component |