summaryrefslogtreecommitdiff
path: root/reporters
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
commit1a481908c8a45588cb65f4f8f49f576505c7b022 (patch)
treeffcf5225a2d70e9ca8485009b31012654ba75b73 /reporters
parent5fbe1a037319451a5e99ef48aad479ed11aafe99 (diff)
downloadpylint-git-1a481908c8a45588cb65f4f8f49f576505c7b022.tar.gz
Add 'on_close' event trigerring and event callback for reporters.
Diffstat (limited to 'reporters')
-rw-r--r--reporters/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/reporters/__init__.py b/reporters/__init__.py
index e2cf26e37..8f54820f5 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
+
+