Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion aerospike_helpers/operations/list_operations.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import aerospike
from typing import Optional

_OP_LIST_REMOVE_BY_VALUE_LIST = aerospike.OP_LIST_REMOVE_BY_VALUE_LIST


OP_KEY = "op"
BIN_KEY = "bin"
Expand Down Expand Up @@ -924,7 +926,7 @@ def list_remove_by_value_list(bin_name: str, value_list, return_type, inverted=F
format of the dictionary should be considered an internal detail, and subject to change.
"""
op_dict = {
OP_KEY: aerospike.OP_LIST_REMOVE_BY_VALUE_LIST,
OP_KEY: _OP_LIST_REMOVE_BY_VALUE_LIST,
BIN_KEY: bin_name,
RETURN_TYPE_KEY: return_type,
VALUE_LIST_KEY: value_list,
Expand Down
Loading