maleo-schemas 0.0.1__tar.gz → 0.0.3__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.
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/PKG-INFO +1 -1
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/maleo_schemas.egg-info/PKG-INFO +1 -1
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/pyproject.toml +1 -1
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/base.py +2 -2
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/response.py +1 -1
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/LICENSE +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/README.md +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/maleo_schemas.egg-info/SOURCES.txt +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/maleo_schemas.egg-info/dependency_links.txt +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/maleo_schemas.egg-info/requires.txt +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/maleo_schemas.egg-info/top_level.txt +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/setup.cfg +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/__init__.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/__init__.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/action.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/request.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/resource.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/operation/system.py +0 -0
- {maleo_schemas-0.0.1 → maleo_schemas-0.0.3}/src/request.py +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import traceback
|
2
|
+
from logging import Logger
|
2
3
|
from typing import Generic, Literal
|
3
4
|
from maleo.logging.enums import Level
|
4
|
-
from maleo.logging.logger import Base
|
5
5
|
from maleo.mixins.general import Success, SuccessT
|
6
6
|
from maleo.mixins.operation import (
|
7
7
|
OperationIdentifier,
|
@@ -155,7 +155,7 @@ class BaseOperation(
|
|
155
155
|
|
156
156
|
def log(
|
157
157
|
self,
|
158
|
-
logger:
|
158
|
+
logger: Logger,
|
159
159
|
level: Level,
|
160
160
|
*,
|
161
161
|
exc_info: OptionalBoolean = None,
|
@@ -181,7 +181,7 @@ class ServiceUnavailableResponse(
|
|
181
181
|
pass
|
182
182
|
|
183
183
|
|
184
|
-
OTHER_RESPONSES:
|
184
|
+
OTHER_RESPONSES: Dict[Union[int, str], StringToAnyDict] = {
|
185
185
|
400: {
|
186
186
|
"description": "Bad Request Response",
|
187
187
|
"model": BadRequestResponse,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|