From cb47a4bc6e9844864c15c91006dd58d75729c6be Mon Sep 17 00:00:00 2001 From: Mungai Njoroge Date: Mon, 22 Jan 2024 22:38:01 +0300 Subject: [PATCH] Update hashing.py --- app/utils/hashing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/hashing.py b/app/utils/hashing.py index 7bd4425..0dfebf3 100644 --- a/app/utils/hashing.py +++ b/app/utils/hashing.py @@ -8,7 +8,7 @@ def create_hash(*args: str, decode=False, limit=10) -> str: This function creates a case-insensitive, non-alphanumeric chars ignoring hash from the given arguments. Example use case: - - Creating computable IDs for duplicate artists Juice WRLD and Juice Wrld should have the same ID. + - Creating computable IDs for duplicate artists. eg. Juice WRLD and Juice Wrld should have the same ID. :param args: The arguments to hash. :param decode: Whether to decode the arguments before hashing.