Skip to content

Commit

Permalink
fix: Fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
josebui committed Nov 7, 2023
1 parent e2691d6 commit 262ed82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraso_backend/apps/core/models/landscapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
calculate_geojson_centroid,
calculate_geojson_feature_area,
)
from apps.core.landscape_collaboration_roles import ROLE_MANAGER
from apps.core.models.taxonomy_terms import TaxonomyTerm

from ..landscape_collaboration_roles import ROLE_MANAGER
from .commons import BaseModel, SlugModel, validate_name
from .groups import Group
from .shared_resources import SharedResource
Expand Down
2 changes: 1 addition & 1 deletion terraso_backend/apps/core/models/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from django.utils.translation import gettext_lazy as _
from safedelete.models import SOFT_DELETE_CASCADE, SafeDeleteManager, SafeDeleteModel

from .. import landscape_collaboration_roles
from apps.core import landscape_collaboration_roles

NOTIFICATION_KEY_GROUP = "group_notifications"
NOTIFICATION_KEY_STORY_MAP = "story_map_notifications"
Expand Down

0 comments on commit 262ed82

Please sign in to comment.