From 4c3f5a33a2ae10376ba1312d299ad087a716a943 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 5 Jul 2015 11:21:26 -0400 Subject: Constructing the plugin is the plugin's business --- coverage/plugin.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'coverage/plugin.py') 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. -- cgit v1.2.1