[WEB-983] chore: dummy data script (#4173)

* chore: dummy data script

* fix: lint issues

* chore: removed print statment
This commit is contained in:
Bavisetti Narayan 2024-04-11 20:27:05 +05:30 committed by GitHub
parent cd395fa3d2
commit b90ca97461
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 662 additions and 7 deletions

View file

@ -3,7 +3,7 @@ import json
# Django import
from django.utils import timezone
from django.db.models import Q, Count, OuterRef, Func, F, Prefetch, Exists
from django.db.models import Q, Count, OuterRef, Func, F, Prefetch
from django.core.serializers.json import DjangoJSONEncoder
from django.contrib.postgres.aggregates import ArrayAgg
from django.contrib.postgres.fields import ArrayField
@ -22,7 +22,6 @@ from plane.db.models import (
InboxIssue,
Issue,
State,
Workspace,
IssueLink,
IssueAttachment,
ProjectMember,

View file

@ -1,9 +1,6 @@
# Python imports
from itertools import groupby
# Django imports
from django.db.models import Q
# Third party imports
from rest_framework.response import Response
from rest_framework import status