diff options
Diffstat (limited to 'redis/utils.py')
-rw-r--r-- | redis/utils.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/redis/utils.py b/redis/utils.py index e10d20f..0b0067e 100644 --- a/redis/utils.py +++ b/redis/utils.py @@ -24,3 +24,10 @@ def pipeline(redis_obj): p = redis_obj.pipeline() yield p p.execute() + + +class dummy(object): + """ + Instances of this class can be used as an attribute container. + """ + pass |