@@ -115,7 +115,7 @@ def send(message: Message, dry_run: bool = False, app: Optional[App] = None) ->
115
115
"""Sends the given message via Firebase Cloud Messaging (FCM).
116
116
117
117
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
118
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
118
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
119
119
120
120
Args:
121
121
message: An instance of ``messaging.Message``.
@@ -139,7 +139,7 @@ def send_each(
139
139
"""Sends each message in the given list via Firebase Cloud Messaging.
140
140
141
141
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
142
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
142
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
143
143
144
144
Args:
145
145
messages: A list of ``messaging.Message`` instances.
@@ -163,7 +163,7 @@ async def send_each_async(
163
163
"""Sends each message in the given list asynchronously via Firebase Cloud Messaging.
164
164
165
165
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
166
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
166
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
167
167
168
168
Args:
169
169
messages: A list of ``messaging.Message`` instances.
@@ -188,7 +188,7 @@ async def send_each_for_multicast_async(
188
188
(FCM).
189
189
190
190
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
191
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
191
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
192
192
193
193
Args:
194
194
multicast_message: An instance of ``messaging.MulticastMessage``.
@@ -219,7 +219,7 @@ def send_each_for_multicast(multicast_message, dry_run=False, app=None):
219
219
"""Sends the given mutlicast message to each token via Firebase Cloud Messaging (FCM).
220
220
221
221
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
222
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
222
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
223
223
224
224
Args:
225
225
multicast_message: An instance of ``messaging.MulticastMessage``.
@@ -250,7 +250,7 @@ def send_all(messages, dry_run=False, app=None):
250
250
"""Sends the given list of messages via Firebase Cloud Messaging as a single batch.
251
251
252
252
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
253
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
253
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
254
254
255
255
Args:
256
256
messages: A list of ``messaging.Message`` instances.
@@ -273,7 +273,7 @@ def send_multicast(multicast_message, dry_run=False, app=None):
273
273
"""Sends the given mutlicast message to all tokens via Firebase Cloud Messaging (FCM).
274
274
275
275
If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
276
- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
276
+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
277
277
278
278
Args:
279
279
multicast_message: An instance of ``messaging.MulticastMessage``.
0 commit comments