@@ -94,7 +94,7 @@ def send(message, dry_run=False, app=None):
94
94
string: A message ID string that uniquely identifies the sent the message.
95
95
96
96
Raises:
97
- ApiCallError: If an error occurs while sending the message to FCM service.
97
+ ApiCallError: If an error occurs while sending the message to the FCM service.
98
98
ValueError: If the input arguments are invalid.
99
99
"""
100
100
return _get_messaging_service (app ).send (message , dry_run )
@@ -114,7 +114,7 @@ def send_all(messages, dry_run=False, app=None):
114
114
BatchResponse: A ``messaging.BatchResponse`` instance.
115
115
116
116
Raises:
117
- ApiCallError: If an error occurs while sending the message to FCM service.
117
+ ApiCallError: If an error occurs while sending the message to the FCM service.
118
118
ValueError: If the input arguments are invalid.
119
119
"""
120
120
return _get_messaging_service (app ).send_all (messages , dry_run )
@@ -134,7 +134,7 @@ def send_multicast(multicast_message, dry_run=False, app=None):
134
134
BatchResponse: A ``messaging.BatchResponse`` instance.
135
135
136
136
Raises:
137
- ApiCallError: If an error occurs while sending the message to FCM service.
137
+ ApiCallError: If an error occurs while sending the message to the FCM service.
138
138
ValueError: If the input arguments are invalid.
139
139
"""
140
140
if not isinstance (multicast_message , MulticastMessage ):
@@ -285,7 +285,7 @@ def __init__(self, resp, exception):
285
285
286
286
@property
287
287
def message_id (self ):
288
- """A message ID string that uniquely identifies the sent the message."""
288
+ """A message ID string that uniquely identifies the message."""
289
289
return self ._message_id
290
290
291
291
@property
@@ -295,7 +295,7 @@ def success(self):
295
295
296
296
@property
297
297
def exception (self ):
298
- """A ApiCallError if an error occurs while sending the message to FCM service."""
298
+ """An ApiCallError if an error occurs while sending the message to the FCM service."""
299
299
return self ._exception
300
300
301
301
0 commit comments