Pipe line general fixes, fixed tests, ran black, and fixed mypy type check issues, still have a list of lists issue with prov other name full
This commit is contained in:
@@ -78,6 +78,8 @@ def remove_hyphens(value):
|
||||
Returns:
|
||||
str: The cleaned value with hyphens removed.
|
||||
"""
|
||||
if value is None:
|
||||
return ""
|
||||
if isinstance(value, str):
|
||||
return value.replace("-", "")
|
||||
elif isinstance(value, list):
|
||||
|
||||
Reference in New Issue
Block a user