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:
ppanchigar
2026-02-04 15:09:44 -06:00
parent b41ad28ecc
commit 9e4b88395b
16 changed files with 340 additions and 231 deletions
@@ -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):