30 "E401", "E501", "E502", "W603", "E701", "E702", |
30 "E401", "E501", "E502", "W603", "E701", "E702", |
31 "E703", "E711", "E712" |
31 "E703", "E711", "E712" |
32 ] |
32 ] |
33 |
33 |
34 |
34 |
|
35 # TODO: refine behavior for non-fixable issues |
35 class Pep8Fixer(QObject): |
36 class Pep8Fixer(QObject): |
36 """ |
37 """ |
37 Class implementing a fixer for certain PEP 8 issues. |
38 Class implementing a fixer for certain PEP 8 issues. |
38 """ |
39 """ |
39 def __init__(self, project, filename, sourceLines, fixCodes, noFixCodes, |
40 def __init__(self, project, filename, sourceLines, fixCodes, noFixCodes, |