From 9d41f25dcb1cb6ae94b609f4b4f4175bd26356c1 Mon Sep 17 00:00:00 2001 From: kshitijrajsharma Date: Mon, 25 Nov 2024 23:17:25 +0100 Subject: [PATCH] fix(indent): fix bug on the major indentation --- backend/core/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/core/views.py b/backend/core/views.py index fa01b834..4d48e600 100644 --- a/backend/core/views.py +++ b/backend/core/views.py @@ -644,7 +644,7 @@ def post(self, request, *args, **kwargs): DEFAULT_TILE_SIZE = 256 if settings.ENABLE_PREDICTION_API: -from orthogonalizer import othogonalize_poly + from orthogonalizer import othogonalize_poly class PredictionView(APIView): authentication_classes = [OsmAuthentication]