Как предотвратить добавление сфинксом исключений и баз объектов в документации

Здравствуйте, у меня есть документация sphinx внутри моего класса. Я хотел бы предотвратить добавление исключением и базовых объектов, как показано на экране. Помогите, пожалуйста,

class CampaignNamingTool(models.Model):
    """
    The goal of Campaign Naming Tool is to help account mangers 
    to plan their campaigns and to follow nomenclature guidelines
    and thus avoid bugs or missing campaigns. Because campaigns
    are case sensitives in the workflow process. So every bad
    named or misnamed campaign are ignored and it won't be
    displayed in the users insertions orders. Plase use this
    formular to create your campaign for the first time.

    .. admonition:: Important

       If the campaign does not respect the guidelines, you
       can't follow it here. It will be missing in the monitoring.
    
    Parameters
    ----------
    user                          : owner or in charge of the campaign.
    year, month                   : year and month when launching campaign online.
    advertiser                    : advertiser of the campaign.
    name                          : name of the campaign.
    device                        : device the campaign must be served (Desktop, Mobile, tablette).
    type_of_format                : format that campaign must be served (IAB, Video, etc)
    kpi                           : KPI of the campaign (CPM, CPC, CPV, CPA, etc)

    Returns
    -------
    an Insertion Order object composed by the concatenation of all these parameters
    """

Вывод

enter image description here

Вернуться на верх