File tree 4 files changed +9
-5
lines changed
addon_service/addon_operation
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 7
7
get_imp_name ,
8
8
)
9
9
from addon_service .common .static_dataclass_model import StaticDataclassModel
10
- from addon_toolkit import AddonOperationImp
10
+ from addon_toolkit import (
11
+ AddonCapabilities ,
12
+ AddonOperationImp ,
13
+ )
11
14
from addon_toolkit .json_arguments import jsonschema_for_signature_params
12
15
from addon_toolkit .operation import AddonOperationType
13
16
@@ -42,7 +45,7 @@ def implementation_docstring(self) -> str:
42
45
return self .operation_imp .imp_function .__doc__ or ""
43
46
44
47
@cached_property
45
- def capability (self ) -> str :
48
+ def capability (self ) -> AddonCapabilities :
46
49
return self .operation_imp .declaration .capability
47
50
48
51
@cached_property
Original file line number Diff line number Diff line change 1
1
from rest_framework_json_api import serializers
2
2
from rest_framework_json_api .utils import get_resource_type_from_model
3
3
4
- from addon_service .addon_imp .models import AddonImp
5
4
from addon_service .common import view_names
6
5
from addon_service .common .enums .serializers import EnumNameChoiceField
7
6
from addon_service .common .serializer_fields import DataclassRelatedDataField
8
7
from addon_toolkit import AddonCapabilities
8
+ from addon_toolkit .imp import AddonImp
9
9
10
10
from .models import AddonOperationModel
11
11
Original file line number Diff line number Diff line change 7
7
Iterator ,
8
8
)
9
9
10
+ from .capabilities import AddonCapabilities
10
11
from .declarator import Declarator
11
12
12
13
@@ -35,7 +36,7 @@ class AddonOperationDeclaration:
35
36
"""
36
37
37
38
operation_type : AddonOperationType
38
- capability : enum . Enum
39
+ capability : AddonCapabilities
39
40
operation_fn : Callable # the decorated function
40
41
return_type : type = dataclasses .field (
41
42
default = type (None ), # if not provided, inferred by __post_init__
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class TestAddonProtocol(unittest.TestCase):
21
21
# the basics of an addon protocol
22
22
23
23
###
24
- # shared test env (on `self` )
24
+ # shared test env (initialized by setUpClass )
25
25
_MyProtocol : type # typing.Protocol subclass decorated with `@addon_protocol`
26
26
_MyImplementation : type # subclass of _MyProtocol
27
27
_my_imp : AddonImp
You can’t perform that action at this time.
0 commit comments