summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ncserver/base/util.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/ncserver/base/util.py b/ncserver/base/util.py
index 5223d92..277c4df 100644
--- a/ncserver/base/util.py
+++ b/ncserver/base/util.py
@@ -84,13 +84,8 @@ def handle_list_operation(rpc, the_list: list, node, operation: str) -> list:
:param node:
The XML node that represents the item being operated on.
- :param str insert:
- The insertion mode for non-deletion operation: first, last, before,
- after. Defaults to 'last' if None.
-
- :param insert_value:
- The value to insert the new value before or after. Only used if
- 'insert' is before or after.
+ :param str operation:
+ The operation to perform: create, merge, replace, delete, remove.
:returns list:
The list with the value manipulated with the desired effect.