Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions GSoC25/EntityLinking/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import redis
import pandas as pd
import time
from typing import List, Dict


class RedisEntityLinking:
Expand All @@ -28,7 +27,7 @@ def __init__(self, host=None, port=None, password=None):
except Exception as e:
print(f"Redis connection error: {e}")
raise

def calculate_redirect(self, source):
result = self.redis_redir.get(source)
if result is None:
Expand Down