mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
dev: fix lint errors
This commit is contained in:
parent
4960e70df6
commit
7c9a2b99e6
@ -79,7 +79,7 @@ class IssueSerializer(BaseSerializer):
|
|||||||
parsed_str = html.tostring(parsed, encoding="unicode")
|
parsed_str = html.tostring(parsed, encoding="unicode")
|
||||||
data["description_html"] = parsed_str
|
data["description_html"] = parsed_str
|
||||||
|
|
||||||
except Exception as e:
|
except Exception:
|
||||||
raise serializers.ValidationError("Invalid HTML passed")
|
raise serializers.ValidationError("Invalid HTML passed")
|
||||||
|
|
||||||
# Validate assignees are from project
|
# Validate assignees are from project
|
||||||
@ -366,7 +366,7 @@ class IssueCommentSerializer(BaseSerializer):
|
|||||||
parsed_str = html.tostring(parsed, encoding="unicode")
|
parsed_str = html.tostring(parsed, encoding="unicode")
|
||||||
data["comment_html"] = parsed_str
|
data["comment_html"] = parsed_str
|
||||||
|
|
||||||
except Exception as e:
|
except Exception:
|
||||||
raise serializers.ValidationError("Invalid HTML passed")
|
raise serializers.ValidationError("Invalid HTML passed")
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
@ -48,26 +48,6 @@ from plane.utils.issue_filters import issue_filters
|
|||||||
|
|
||||||
# Module imports
|
# Module imports
|
||||||
from .. import BaseAPIView
|
from .. import BaseAPIView
|
||||||
from plane.db.models import (
|
|
||||||
Issue,
|
|
||||||
IssueActivity,
|
|
||||||
ProjectMember,
|
|
||||||
Widget,
|
|
||||||
DashboardWidget,
|
|
||||||
Dashboard,
|
|
||||||
Project,
|
|
||||||
IssueLink,
|
|
||||||
IssueAttachment,
|
|
||||||
IssueRelation,
|
|
||||||
User,
|
|
||||||
)
|
|
||||||
from plane.app.serializers import (
|
|
||||||
IssueActivitySerializer,
|
|
||||||
IssueSerializer,
|
|
||||||
DashboardSerializer,
|
|
||||||
WidgetSerializer,
|
|
||||||
)
|
|
||||||
from plane.utils.issue_filters import issue_filters
|
|
||||||
|
|
||||||
|
|
||||||
def dashboard_overview_stats(self, request, slug):
|
def dashboard_overview_stats(self, request, slug):
|
||||||
|
@ -1,24 +1,15 @@
|
|||||||
# Python imports
|
# Python imports
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from django.contrib.postgres.aggregates import ArrayAgg
|
|
||||||
from django.contrib.postgres.fields import ArrayField
|
|
||||||
from django.core.serializers.json import DjangoJSONEncoder
|
from django.core.serializers.json import DjangoJSONEncoder
|
||||||
from django.db.models import (
|
from django.db.models import (
|
||||||
Case,
|
|
||||||
CharField,
|
|
||||||
Exists,
|
Exists,
|
||||||
F,
|
F,
|
||||||
Func,
|
Func,
|
||||||
Max,
|
|
||||||
OuterRef,
|
OuterRef,
|
||||||
Prefetch,
|
Prefetch,
|
||||||
Q,
|
Q,
|
||||||
UUIDField,
|
|
||||||
Value,
|
|
||||||
When,
|
|
||||||
)
|
)
|
||||||
from django.db.models.functions import Coalesce
|
|
||||||
|
|
||||||
# Django imports
|
# Django imports
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
@ -44,7 +44,7 @@ from plane.utils.paginator import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Module imports
|
# Module imports
|
||||||
from .. import BaseAPIView, BaseViewSet, WebhookMixin
|
from .. import BaseViewSet, WebhookMixin
|
||||||
|
|
||||||
|
|
||||||
class ModuleIssueViewSet(WebhookMixin, BaseViewSet):
|
class ModuleIssueViewSet(WebhookMixin, BaseViewSet):
|
||||||
|
@ -6,8 +6,6 @@ from celery import shared_task
|
|||||||
|
|
||||||
# Django imports
|
# Django imports
|
||||||
# Third party imports
|
# Third party imports
|
||||||
from celery import shared_task
|
|
||||||
from django.conf import settings
|
|
||||||
from django.core.mail import EmailMultiAlternatives, get_connection
|
from django.core.mail import EmailMultiAlternatives, get_connection
|
||||||
from django.template.loader import render_to_string
|
from django.template.loader import render_to_string
|
||||||
from django.utils.html import strip_tags
|
from django.utils.html import strip_tags
|
||||||
|
Loading…
Reference in New Issue
Block a user