Skip to content

Commit e0be7dd

Browse files
committed
Fixes flakes in PR #1719
1 parent 0dc89d9 commit e0be7dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redis/commands/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2184,15 +2184,15 @@ def srandmember(self, name, number=None):
21842184
def srem(self, name, *values):
21852185
"""
21862186
Remove ``values`` from set ``name``
2187-
2187+
21882188
For more information check https://redis.io/commands/srem
21892189
"""
21902190
return self.execute_command('SREM', name, *values)
21912191

21922192
def sunion(self, keys, *args):
21932193
"""
21942194
Return the union of sets specified by ``keys``
2195-
2195+
21962196
For more information check https://redis.io/commands/sunion
21972197
"""
21982198
args = list_or_args(keys, args)

0 commit comments

Comments
 (0)