diff --git a/taiga/base/api/permissions.py b/taiga/base/api/permissions.py index 54e3be02..d9e052fd 100644 --- a/taiga/base/api/permissions.py +++ b/taiga/base/api/permissions.py @@ -16,6 +16,8 @@ import abc +from functools import reduce + from taiga.base.utils import sequence as sq from taiga.permissions.service import user_has_perm, is_project_owner from django.apps import apps diff --git a/taiga/base/filters.py b/taiga/base/filters.py index a6cf64e3..2c139df1 100644 --- a/taiga/base/filters.py +++ b/taiga/base/filters.py @@ -13,8 +13,6 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -import operator -from functools import reduce import logging from django.apps import apps