summaryrefslogtreecommitdiff
path: root/reporters/__init__.py
diff options
context:
space:
mode:
authorFELD Boris <lothiraldan@gmail.com>2012-05-03 12:48:09 +0200
committerFELD Boris <lothiraldan@gmail.com>2012-05-03 12:48:09 +0200
commit17365a04f538aee221f8511f78593de44ba36c24 (patch)
tree2ff3a120fc8c61578493d8594100de9435e9d865 /reporters/__init__.py
parentbd13faac0f693e612568f668f3c39b76a2f68586 (diff)
downloadpylint-17365a04f538aee221f8511f78593de44ba36c24.tar.gz
Add 'on_close' event trigerring and event callback for reporters.
Diffstat (limited to 'reporters/__init__.py')
-rw-r--r--reporters/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/reporters/__init__.py b/reporters/__init__.py
index e2cf26e..8f54820 100644
--- a/reporters/__init__.py
+++ b/reporters/__init__.py
@@ -81,3 +81,8 @@ class BaseReporter:
"""starting analyzis of a module"""
pass
+ def on_close(self, stats, previous_stats):
+ """global end of analyzis"""
+ pass
+
+