--- a/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Thu Nov 12 19:17:05 2015 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Fri Nov 13 22:52:26 2015 +0100 @@ -7,8 +7,6 @@ Module implementing a checker for naming conventions. """ -from __future__ import unicode_literals - import collections import ast import re @@ -444,3 +442,6 @@ yield self.__error(node, "N813") elif self.UppercaseRegexp.match(name.asname): yield self.__error(node, "N814") + +# +# eflag: noqa = M702