From 547ad3ff10230b2dd0cf9d461b8494593d382fd6 Mon Sep 17 00:00:00 2001 From: Evgeniy Zayats Date: Mon, 4 Sep 2023 17:18:54 -0400 Subject: [PATCH] lib: cosmetic fix to remove space for drop-objects wrapper Signed-off-by: Evgeniy Zayats --- robot/resources/lib/python_keywords/node_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot/resources/lib/python_keywords/node_management.py b/robot/resources/lib/python_keywords/node_management.py index 828735f68..1f3979a84 100644 --- a/robot/resources/lib/python_keywords/node_management.py +++ b/robot/resources/lib/python_keywords/node_management.py @@ -146,7 +146,7 @@ def drop_object(node: StorageNode, cid: str, oid: str) -> str: Args: node_id str: node from which object should be dropped. """ - command = f"control drop-objects -o {cid}/{oid}" + command = f"control drop-objects -o {cid}/{oid}" return _run_control_command_with_retries(node, command)