Added Pre-Commit Hooks (#175)
* Added pre commit hook * Run pre commit hook on all files --------- Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
117e8e88c2
commit
58be33a8d7
@@ -5,22 +5,20 @@ Used to register models on admin site
|
||||
"""
|
||||
|
||||
from django.contrib import admin
|
||||
|
||||
from payroll.models.models import (
|
||||
Allowance,
|
||||
Contract,
|
||||
Deduction,
|
||||
FilingStatus,
|
||||
Payslip,
|
||||
WorkRecord,
|
||||
LoanAccount,
|
||||
MultipleCondition,
|
||||
Payslip,
|
||||
Reimbursement,
|
||||
ReimbursementrequestComment,
|
||||
MultipleCondition,
|
||||
WorkRecord,
|
||||
)
|
||||
from payroll.models.tax_models import (
|
||||
PayrollSettings,
|
||||
TaxBracket,
|
||||
)
|
||||
from payroll.models.models import Contract
|
||||
from payroll.models.tax_models import PayrollSettings, TaxBracket
|
||||
|
||||
# Register your models here.
|
||||
admin.site.register(FilingStatus)
|
||||
|
||||
Reference in New Issue
Block a user