minor fix

This commit is contained in:
Wilson Gomez 2023-08-05 08:34:04 -05:00
parent 8e1abeacae
commit b764d3d0e6
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@ from trytond.pool import Pool, PoolMeta
from trytond.model import ModelView, ModelSQL, fields
from trytond.wizard import Wizard, StateView, Button, StateReport, StateTransition
from dateutil.relativedelta import relativedelta
from trytond.modules.company import CompanyReport
from datetime import timedelta
from trytond.pyson import Eval, Bool
from trytond.report import Report
@ -46,7 +45,7 @@ class AuditReportWizard(Wizard):
return 'end'
class AuditReport(CompanyReport):
class AuditReport(Report):
'Audit Report'
__name__ = 'account_col.audit_report'