Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit c3bbbff

Browse files
authored
Fix import linter (#71)
1 parent 0c34941 commit c3bbbff

File tree

18 files changed

+9
-9
lines changed

18 files changed

+9
-9
lines changed

.importlinter

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ containers =
1616
layers =
1717
(urls) | (admin)
1818
(views)
19-
(infrastructure)
19+
(container)
2020
(logic)
21+
(infrastructure)
2122
(models)
22-
(container)
2323

2424

2525
[importlinter:contract:apps-independence]
File renamed without changes.

server/apps/identity/intrastructure/django/__init__.py renamed to server/apps/identity/infrastructure/django/__init__.py

File renamed without changes.

server/apps/identity/intrastructure/django/decorators.py renamed to server/apps/identity/infrastructure/django/decorators.py

File renamed without changes.
File renamed without changes.

server/apps/identity/intrastructure/services/__init__.py renamed to server/apps/identity/infrastructure/services/__init__.py

File renamed without changes.

server/apps/identity/intrastructure/services/placeholder.py renamed to server/apps/identity/infrastructure/services/placeholder.py

File renamed without changes.

server/apps/identity/logic/usecases/user_create_new.py

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

33
import attr
44

5-
from server.apps.identity.intrastructure.services import placeholder
5+
from server.apps.identity.infrastructure.services import placeholder
66
from server.apps.identity.models import User
77
from server.common.django.types import Settings
88

server/apps/identity/logic/usecases/user_update.py

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

33
import attr
44

5-
from server.apps.identity.intrastructure.services import placeholder
5+
from server.apps.identity.infrastructure.services import placeholder
66
from server.apps.identity.models import User
77
from server.common.django.types import Settings
88

server/apps/identity/views/login.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
from ratelimit.mixins import RatelimitMixin
1111

1212
from server.apps.identity.container import container
13-
from server.apps.identity.intrastructure.django.decorators import (
13+
from server.apps.identity.infrastructure.django.decorators import (
1414
redirect_logged_in_users,
1515
)
16-
from server.apps.identity.intrastructure.django.forms import (
16+
from server.apps.identity.infrastructure.django.forms import (
1717
AuthenticationForm,
1818
RegistrationForm,
1919
)

0 commit comments

Comments
 (0)