We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1635051 + d1fd46d commit e7d759fCopy full SHA for e7d759f
.gitmodules
@@ -3,4 +3,4 @@
3
url = [email protected]:mapswipe/mapswipe-firebase.git
4
[submodule "assets"]
5
path = assets
6
- url = https://github.com/mapswipe/mapswipe-assets
+ url = git@github.com:mapswipe/mapswipe-assets.git
apps/project/serializers.py
@@ -386,8 +386,8 @@ def _validate_aoi_geometry(
386
area = sum(geom.area for geom in geometries)
387
388
# FIXME(tnagorra): We need to change AOI geometry to 20 sq.km.
389
- # Increasing this to 40 because of failing tests
390
- MAX_AOI_GEOMETRY_AREA = 40
+ # Increasing this to 100000000 because of failing tests
+ MAX_AOI_GEOMETRY_AREA = 100000000
391
if area * 10000 > MAX_AOI_GEOMETRY_AREA:
392
raise ValidationError(
393
{
0 commit comments