| Current Path : /proc/self/root/opt/imh-python/lib/python3.9/site-packages/redis/commands/search/ |
| Current File : //proc/self/root/opt/imh-python/lib/python3.9/site-packages/redis/commands/search/_util.py |
def to_string(s, encoding: str = "utf-8"):
if isinstance(s, str):
return s
elif isinstance(s, bytes):
return s.decode(encoding, "ignore")
else:
return s # Not a string we care about