5 lines
159 B
Python
5 lines
159 B
Python
class Normalization:
|
|
@staticmethod
|
|
def normalize_uuid(val : str):
|
|
val = val.replace("{", "").replace("}", "").replace("-", "").strip().lower()
|
|
return val |