U
    [eW                     @   s    d dl Z G dd de jdZdS )    Nc                   @   s(   e Zd ZdZdddZejdd ZdS )	FormatterBasez8Base class for example plugin used in the tutorial.
    <   c                 C   s
   || _ d S )N)	max_width)selfr    r   X/var/www/html/services/stratfitenv/lib/python3.8/site-packages/stevedore/example/base.py__init__   s    zFormatterBase.__init__c                 C   s   dS )zFormat the data and return unicode text.

        :param data: A dictionary with string keys and simple types as
                     values.
        :type data: dict(str:?)
        :returns: Iterable producing the formatted text.
        Nr   )r   datar   r   r   format   s    zFormatterBase.formatN)r   )__name__
__module____qualname____doc__r   abcabstractmethodr
   r   r   r   r   r      s   
r   )	metaclass)r   ABCMetar   r   r   r   r   <module>   s   