Plugins/CheckerPlugins/CodeStyleChecker/DocStyleChecker.py

branch
5_5_x
changeset 3823
0ea489eea09c
parent 3622
7a9a8fb4b8c6
child 3938
d2b103d42907
equal deleted inserted replaced
3820:c00bdab507ef 3823:0ea489eea09c
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