File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -80,13 +80,13 @@ def messages(self):
80
80
from .resources import Messages
81
81
return Messages (self )
82
82
83
- # Defined at the top level here for convienience
83
+ # Defined at the top level here for convenience
84
84
def notify (
85
85
self ,
86
86
key ,
87
- actor ,
88
87
recipients ,
89
88
data = {},
89
+ actor = None ,
90
90
cancellation_key = None ,
91
91
tenant = None ):
92
92
"""
@@ -113,9 +113,9 @@ def notify(
113
113
"""
114
114
# Note: this is essentially a delegated method
115
115
return self .workflows .trigger (
116
- key ,
117
- actor ,
118
- recipients ,
116
+ key = key ,
117
+ recipients = recipients ,
119
118
data = data ,
119
+ actor = actor ,
120
120
cancellation_key = cancellation_key ,
121
121
tenant = tenant )
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ class Workflows(Service):
5
5
def trigger (
6
6
self ,
7
7
key ,
8
- actor ,
9
8
recipients ,
10
9
data = {},
10
+ actor = None ,
11
11
cancellation_key = None ,
12
12
tenant = None ):
13
13
"""
You can’t perform that action at this time.
0 commit comments