summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-16 19:03:29 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-16 19:03:29 +0300
commit7f77255f8719993f04070ef6ed100a378956b55d (patch)
tree0f596a1753e45649c78395c13558e44f64ccf76e
parent20878008ebeee9c71d1145e7d5f40e18fb1392f7 (diff)
downloadpylint-7f77255f8719993f04070ef6ed100a378956b55d.tar.gz
Update the docstrings to be more intuitive.
-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):