Skip to content

Commit 6120638

Browse files
committed
chore(migration): Merge migrations
1 parent 7a429c7 commit 6120638

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Django 5.2.5 on 2025-08-22 06:27
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('project', '0017_projecttaskgroup_number_of_groups'),
10+
('project', '0019_alter_projectasset_mimetype'),
11+
]
12+
13+
operations = [
14+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Django 5.2.5 on 2025-08-25 05:51
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('project', '0020_merge_20250822_0421'),
10+
('project', '0020_merge_20250822_0627'),
11+
]
12+
13+
operations = [
14+
]

apps/project/tests/mutation_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from PIL import Image
99
from ulid import ULID
1010

11-
from apps.common.models import AssetMimetypeEnum, IconEnum
11+
from apps.common.models import IconEnum
1212
from apps.contributor.factories import ContributorTeamFactory
1313
from apps.project.factories import OrganizationFactory, ProjectFactory
1414
from apps.project.models import (
@@ -1478,7 +1478,7 @@ def test_project_street(self, mock_requests):
14781478
},
14791479
],
14801480
},
1481-
"mapilaryImageFilters": {
1481+
"mapillaryImageFilters": {
14821482
"isPano": True,
14831483
"creatorId": None,
14841484
"organizationId": None,

project_types/street/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from django.contrib.gis.geos import GEOSGeometry
77
from django.core.files.base import ContentFile
8-
from pydantic import BaseModel, Field
8+
from pydantic import BaseModel
99
from pyfirebase_mapswipe import models as firebase_models
1010
from shapely import to_wkt
1111
from shapely.geometry.point import Point

0 commit comments

Comments
 (0)