summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/reporters/__init__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pylint/reporters/__init__.py b/pylint/reporters/__init__.py
index 9921a9a..664c62a 100644
--- a/pylint/reporters/__init__.py
+++ b/pylint/reporters/__init__.py
@@ -105,12 +105,10 @@ class BaseReporter(object):
# Event callbacks
def on_set_current_module(self, module, filepath):
- """starting analyzis of a module"""
- pass
+ """Hook called when a module starts to be analysed."""
def on_close(self, stats, previous_stats):
- """global end of analyzis"""
- pass
+ """Hook called when a module finished analyzing."""
class CollectingReporter(BaseReporter):