diff --git a/babel.ini b/babel.ini index bac6e53c3..7b4d79f28 100644 --- a/babel.ini +++ b/babel.ini @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2016-2021 CERN. +# Copyright (C) 2024 KTH Royal Institute of Technology. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -16,6 +17,9 @@ encoding = utf-8 [jinja2: **/templates/**.html] encoding = utf-8 +[jinja2: **/templates/**.jinja] +encoding = utf-8 + # Extraction from JavaScript files [javascript: **.js] diff --git a/invenio_communities/communities/services/config.py b/invenio_communities/communities/services/config.py index 208dc8027..8cf88c782 100644 --- a/invenio_communities/communities/services/config.py +++ b/invenio_communities/communities/services/config.py @@ -19,7 +19,9 @@ SearchOptionsMixin, ) from invenio_records_resources.services.files.links import FileLink -from invenio_records_resources.services.records.config import RecordServiceConfig +from invenio_records_resources.services.records.config import ( + RecordServiceConfig, +) from invenio_records_resources.services.records.config import ( SearchOptions as SearchOptionsBase, )