Source code for pypint.plugins.analyzers.i_analyzer
# coding=utf-8
"""
.. moduleauthor:: Torbjörn Klatt <[email protected]>
"""
[docs]class IAnalyzer(object):
"""Basic interface for analyzers.
"""
def __init__(self, *args, **kwargs):
self._data = None
self._plotter = None