Skip to content

Commit

Permalink
Remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazade committed Oct 7, 2020
1 parent 0f5506f commit 4e6a692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/datastore/client.py
Expand Up @@ -885,7 +885,7 @@ def reserve_ids(self, complete_key, num_ids, retry=None, timeout=None):
"""
message = (
"Client.reserve_ids is deprecated. Please use "
"Client.reserve_ids_multi or Client.reserve_ids_sequential",
"Client.reserve_ids_multi or Client.reserve_ids_sequential"
)
warnings.warn(message, DeprecationWarning)
return self.reserve_ids_sequential(
Expand Down

0 comments on commit 4e6a692

Please sign in to comment.