Skip to content

Commit

Permalink
fix(check): Update required apps and library check in settings valida…
Browse files Browse the repository at this point in the history
…tion

Closes(#37)
  • Loading branch information
ARYAN-NIKNEZHAD committed Nov 2, 2024
1 parent e756582 commit c341aa5
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 c341aa5

Please sign in to comment.