From efbe8041fa142adb59dc54ae90a3f795e9a0f557 Mon Sep 17 00:00:00 2001 From: Akuli Date: Wed, 15 Dec 2021 13:30:45 +0200 Subject: [PATCH] Fix link in lmove docstring --- redis/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/commands/core.py b/redis/commands/core.py index fec3095cc5..62e3ba85c2 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -1244,7 +1244,7 @@ def lmove(self, first_list, second_list, src="LEFT", dest="RIGHT"): pushing it as the first/last element on the destination list. Returns the element being popped and pushed. - For more information check https://redis.io/commands/lmov + For more information check https://redis.io/commands/lmove """ params = [first_list, second_list, src, dest] return self.execute_command("LMOVE", *params)