mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
remove extraneous ttl arg
This commit is contained in:
parent
30c9494daa
commit
6832b9edd6
@ -32,10 +32,9 @@ class VolatileState:
|
||||
class VolatileBooleanState:
|
||||
"""Quick and dirty volatile dict-like redis wrapper for boolean values"""
|
||||
|
||||
def __init__(self, prefix, ttl=3600, **redis_args):
|
||||
def __init__(self, prefix, **redis_args):
|
||||
self.rdb = redis.Redis(**redis_args)
|
||||
self.prefix = prefix
|
||||
self.ttl = ttl
|
||||
|
||||
def __getitem__(self, table):
|
||||
return RedisBooleanTable(self, table)
|
||||
|
Loading…
x
Reference in New Issue
Block a user