Plugins/CheckerPlugins/CodeStyleChecker/DocStyleChecker.py

changeset 3822
1faf52d8f2bd
parent 3622
7a9a8fb4b8c6
child 3938
d2b103d42907
equal deleted inserted replaced
3821:8731f4bf0704 3822:1faf52d8f2bd
313 def run(self): 313 def run(self):
314 """ 314 """
315 Public method to check the given source for violations of doc string 315 Public method to check the given source for violations of doc string
316 conventions. 316 conventions.
317 """ 317 """
318 if not self.__source or not self.__filename: 318 if not self.__filename:
319 # don't do anything, if essential data is missing 319 # don't do anything, if essential data is missing
320 return 320 return
321 321
322 if not self.__checkers: 322 if not self.__checkers:
323 # don't do anything, if no codes were selected 323 # don't do anything, if no codes were selected

eric ide

mercurial