Merged the "accounting.database" module into the "accounting" module. It has only one member as "db", the database instance, and does not need to be separated into another file.

This commit is contained in:
2023-02-08 11:13:09 +08:00
parent e24ed61b99
commit d99f592cff
16 changed files with 22 additions and 67 deletions

View File

@ -24,7 +24,7 @@ from flask_wtf import FlaskForm
from wtforms import StringField, ValidationError
from wtforms.validators import DataRequired, Regexp, NoneOf
from accounting.database import db
from accounting import db
from accounting.locale import lazy_gettext
from accounting.models import Currency
from accounting.utils.strip_text import strip_text