summaryrefslogtreecommitdiff
path: root/coverage/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r--coverage/plugin.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py
index 678d297a..44dab55f 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.