mirror of https://github.com/CIRCL/lookyloo
fix: Make mypy happy
parent
990be698a0
commit
79f3916454
|
@ -271,7 +271,7 @@ class CapturesIndex(Mapping): # type: ignore[type-arg]
|
||||||
return None
|
return None
|
||||||
p = self.redis.pipeline()
|
p = self.redis.pipeline()
|
||||||
has_new_cached_captures = False
|
has_new_cached_captures = False
|
||||||
recent_captures = {}
|
recent_captures: dict[str, float] = {}
|
||||||
for uuid, directory in self.redis.hscan_iter('lookup_dirs'):
|
for uuid, directory in self.redis.hscan_iter('lookup_dirs'):
|
||||||
if uuid in self.__cache:
|
if uuid in self.__cache:
|
||||||
continue
|
continue
|
||||||
|
@ -291,7 +291,7 @@ class CapturesIndex(Mapping): # type: ignore[type-arg]
|
||||||
if hasattr(cc, 'timestamp'):
|
if hasattr(cc, 'timestamp'):
|
||||||
recent_captures[cc.uuid] = cc.timestamp.timestamp()
|
recent_captures[cc.uuid] = cc.timestamp.timestamp()
|
||||||
if recent_captures:
|
if recent_captures:
|
||||||
self.redis.zadd('recent_captures', recent_captures, nx=True)
|
self.redis.zadd('recent_captures', mapping=recent_captures, nx=True) # type: ignore[arg-type]
|
||||||
|
|
||||||
def _get_capture_dir(self, uuid: str) -> str:
|
def _get_capture_dir(self, uuid: str) -> str:
|
||||||
# Try to get from the recent captures cache in redis
|
# Try to get from the recent captures cache in redis
|
||||||
|
|
Loading…
Reference in New Issue