django-ninja-aio-crud 0.11.0__tar.gz → 0.11.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-ninja-aio-crud
3
- Version: 0.11.0
3
+ Version: 0.11.1
4
4
  Summary: Django Ninja AIO CRUD - Rest Framework
5
5
  Author: Giuseppe Casillo
6
6
  Requires-Python: >=3.10
@@ -1,6 +1,6 @@
1
1
  """Django Ninja AIO CRUD - Rest Framework"""
2
2
 
3
- __version__ = "0.11.0"
3
+ __version__ = "0.11.1"
4
4
 
5
5
  from .api import NinjaAIO
6
6
 
@@ -17,7 +17,7 @@ from .schemas import (
17
17
  M2MRemoveSchemaIn,
18
18
  )
19
19
  from .types import ModelSerializerMeta, VIEW_TYPES
20
- from .decoratos import unique_view
20
+ from .decorators import unique_view
21
21
 
22
22
  ERROR_CODES = frozenset({400, 401, 404, 428})
23
23