Skip to content

Commit d936f41

Browse files
committed
Budgets Costfilter datatype fix
1 parent 4e3936c commit d936f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-collection/deploy/module-budgets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Resources:
132132
def clean_value(value):
133133
"""Clean string values by replacing special characters with underscores"""
134134
if isinstance(value, str):
135-
return re.sub(r'[:\\]', '_', value)
135+
return re.sub(r'\W+', '_', value)
136136
elif isinstance(value, list):
137137
return [clean_value(v) for v in value]
138138
return value

0 commit comments

Comments
 (0)