Skip to content

Commit 11dfb0b

Browse files
authored
Merge pull request #3 from amirreza8002/structure
restructure project directories
2 parents 8ab69ad + 04361a6 commit 11dfb0b

File tree

38 files changed

+142
-141
lines changed

38 files changed

+142
-141
lines changed

django_async_extensions/aforms/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from django_async_extensions.forms.models import AsyncModelForm
2+
3+
4+
__all__ = ("AsyncModelForm",)

django_async_extensions/aforms/models.py renamed to django_async_extensions/forms/models.py

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

55
from django.forms.models import ModelForm
66

7-
from django_async_extensions.aforms.utils import AsyncRenderableFormMixin
7+
from django_async_extensions.forms.utils import AsyncRenderableFormMixin
88

99

1010
class AsyncModelForm(AsyncRenderableFormMixin, ModelForm):

0 commit comments

Comments
 (0)