--- a/Plugins/CheckerPlugins/CodeStyleChecker/McCabeChecker.py Thu Nov 12 19:17:05 2015 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/McCabeChecker.py Fri Nov 13 22:52:26 2015 +0100 @@ -7,8 +7,6 @@ Module implementing a checker for code complexity. """ -from __future__ import unicode_literals - import sys import ast @@ -124,3 +122,6 @@ if graph.complexity() > self.__maxComplexity: self.__error(graph.lineno, 0, "C101", graph.entity, graph.complexity()) + +# +# eflag: noqa = M702