InvenTree/InvenTree/company/apps.py

15 lines
258 B
Python

from __future__ import unicode_literals
from django.apps import AppConfig
class CompanyConfig(AppConfig):
name = 'company'
def ready(self):
"""
This function is called whenever the Company app is loaded.
"""
pass