15 lines
503 B
Python
15 lines
503 B
Python
from az_locale.locale.setup_locale import setup_locale
|
|
from az_locale.locale.setup_chart import setup_chart
|
|
# from az_locale.locale.update_languages import update_languages
|
|
from az_locale.locale.update_country import update_country
|
|
from az_locale.locale.update_item_groups import update_item_groups
|
|
from az_locale.locale.update_tax import update_tax
|
|
|
|
def after_install():
|
|
setup_locale()
|
|
setup_chart()
|
|
# update_languages()
|
|
update_country()
|
|
update_item_groups()
|
|
update_tax()
|