Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Carbonetto <[email protected]>
Co-authored-by: jonathanl-bq <[email protected]>
Signed-off-by: Shoham Elias <[email protected]>
  • Loading branch information
3 people committed Oct 27, 2024
1 parent f418386 commit e108939
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/python/glide/async_commands/server_modules/json.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
"""module for `JSON` commands.
"""Glide module for `JSON` commands.
Examples:
Expand Down
2 changes: 1 addition & 1 deletion python/python/tests/tests_server_modules/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ async def test_json_forget(self, glide_client: TGlideClient):
json_value = {"a": 1.0, "b": {"a": 1, "b": 2.5, "c": True}}
assert await json.set(glide_client, key, "$", OuterJson.dumps(json_value)) == OK

# Non-exiseting paths
# Non-existing paths
assert await json.forget(glide_client, key, "$..path") == 0
assert await json.forget(glide_client, key, "..path") == 0

Expand Down

0 comments on commit e108939

Please sign in to comment.