Plugins/CheckerPlugins/Pep8/Pep8NamingChecker.py

changeset 2975
fb336783a649
parent 2962
d6c9d1ca2da4
equal deleted inserted replaced
2974:4312c5a2bcd3 2975:fb336783a649
109 Public method run by the pep8.py checker. 109 Public method run by the pep8.py checker.
110 110
111 @return tuple giving line number, offset within line, code and 111 @return tuple giving line number, offset within line, code and
112 checker function 112 checker function
113 """ 113 """
114 if self.__tree: 114 if self.__tree and self.__checkers:
115 return self.__visitTree(self.__tree) 115 return self.__visitTree(self.__tree)
116 else: 116 else:
117 return () 117 return ()
118 118
119 @classmethod 119 @classmethod

eric ide

mercurial