Skip to content

Commit

Permalink
Merge pull request #38 from ARYAN-NIKNEZHAD/chore/checks-settings
Browse files Browse the repository at this point in the history
fix(check): Update required apps and library check in settings validation
  • Loading branch information
sepehr-akbarzadeh authored Dec 5, 2024
2 parents df49b8b + c341aa5 commit 4ea766c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sage_invoice/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
def check_installed_apps(app_configs, **kwargs):
errors = []
required_apps = [
"django.contrib.humanize",
"django_jsonform",
"import_export",
"sage_invoice",
]

Expand All @@ -29,6 +32,8 @@ def check_installed_apps(app_configs, **kwargs):
def check_required_libraries(app_configs, **kwargs):
errors = []
required_libraries = [
"django_jsonform",
"import_export",
"sage_invoice",
]

Expand Down

0 comments on commit 4ea766c

Please sign in to comment.