diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:21:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:21:26 -0400 |
commit | 4c3f5a33a2ae10376ba1312d299ad087a716a943 (patch) | |
tree | 2cc01a072c9721fb2752be4b3ca5f431589407c7 /coverage/plugin.py | |
parent | 152d22cfbae8a8371acabe35ae3de61fb31708d3 (diff) | |
download | python-coveragepy-4c3f5a33a2ae10376ba1312d299ad087a716a943.tar.gz |
Constructing the plugin is the plugin's business
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index 678d297..44dab55 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -27,19 +27,6 @@ class CoveragePlugin(object): """ - def __init__(self, options=None): - """ - When the plugin is constructed, it will be passed a dictionary of - plugin-specific options read from the .coveragerc configuration file. - The base class stores these on the `self.options` attribute. - - Arguments: - options (dict): The plugin-specific options read from the - .coveragerc configuration file. - - """ - self.options = options or {} - def file_tracer(self, filename): # pylint: disable=unused-argument """Return a FileTracer object for a file. |