misp-galaxy/galaxy/lib/python3.12/site-packages/redis/commands/search/_util.py

8 lines
219 B
Python
Raw Normal View History

2024-08-20 16:46:04 +00:00
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