Remove unnecessary __all__

This commit is contained in:
Albert Cervera i Areny 2021-10-11 15:43:53 +02:00
parent 0cf9d6909d
commit c67b5b0bb8
4 changed files with 0 additions and 14 deletions

View File

@ -42,14 +42,6 @@ from email.utils import getaddresses
from email import encoders
__all__ = ['Filter', 'Expression', 'Report', 'ReportGroup', 'Dimension',
'DimensionColumn', 'Measure', 'InternalMeasure', 'Order', 'ActWindow',
'Menu', 'Keyword', 'Model', 'OpenChartStart', 'OpenChart',
'ReportExecution', 'OpenExecutionSelect', 'OpenExecution',
'UpdateDataWizardStart', 'UpdateDataWizardUpdated',
'FilterParameter', 'CleanExecutionsStart', 'CleanExecutions']
FIELD_TYPES = [
('char', 'Char'),
('integer', 'Integer'),

View File

@ -2,8 +2,6 @@
# copyright notices and license terms.
from trytond.model import ModelSQL, ModelView, fields, ModelSingleton
__all__ = ['Configuration']
class Configuration(ModelSingleton, ModelSQL, ModelView):
'Business Intelligence Configuration'

View File

@ -4,8 +4,6 @@ from trytond.model import fields, dualmethod
from trytond.pool import Pool, PoolMeta
from trytond.transaction import Transaction
__all__ = ['Cron']
class Cron(metaclass=PoolMeta):
__name__ = "ir.cron"

View File

@ -10,8 +10,6 @@ from trytond.protocols.jsonrpc import JSONDecoder
from trytond.report import Report
from trytond.i18n import gettext
__all__ = ['BabiHTMLReport']
class BabiHTMLReport(Report):
__name__ = 'babi.report.html_report'