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 |