Skip to content
Snippets Groups Projects

Update django-titofisto to support public namespace

Merged Jonathan Weth requested to merge fix/django-titofisto-0.2.0 into master
All threads resolved!
2 files
+ 6
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
5
from importlib import metadata
try:
from .celery import app as celery_app
except ModuleNotFoundError:
# Celery is not available
celery_app = None
from .celery import app as celery_app # noqa
try:
__version__ = metadata.distribution("AlekSIS-Core").version
Loading