o
    Ri                     @   s2   d Z ddlmZ ddlmZ G dd dejZdS )zf
Fixer that adds ``from builtins import object`` if there is a line
like this:
    class Foo(object):
    )
fixer_basetouch_import_topc                   @   s   e Zd ZdZdd ZdS )	FixObjectz<classdef< 'class' NAME '(' name='object' ')' colon=':' any >c                 C   s   t dd| d S )Nbuiltinsobjectr   )selfnoderesults r   S/home/air/SG/back/venv/lib/python3.10/site-packages/libfuturize/fixes/fix_object.py	transform   s   zFixObject.transformN)__name__
__module____qualname__PATTERNr   r   r   r   r   r      s    r   N)__doc__lib2to3r   libfuturize.fixer_utilr   BaseFixr   r   r   r   r   <module>   s    