From 472eba69403f65f242945e3d8b170a7de7dc0bad Mon Sep 17 00:00:00 2001
From: Jonathan Weth <git@jonathanweth.de>
Date: Wed, 10 Nov 2021 20:13:55 +0100
Subject: [PATCH] Update changelog

---
 CHANGELOG.rst            | 5 +++++
 aleksis/core/__init__.py | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index be6b8c58c..58265094b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
 Unreleased
 ----------
 
+Removed
+~~~~~~~
+
+* Remove fallback code from optional Celery as it's now non-optional.
+
 `2.1`_ - 2021-11-05
 -------------------
 
diff --git a/aleksis/core/__init__.py b/aleksis/core/__init__.py
index ce9af380e..66d1ef788 100644
--- a/aleksis/core/__init__.py
+++ b/aleksis/core/__init__.py
@@ -1,6 +1,6 @@
 from importlib import metadata
 
-from .celery import app as celery_app
+from .celery import app as celery_app  # noqa
 
 try:
     __version__ = metadata.distribution("AlekSIS-Core").version
-- 
GitLab